fleet/frontend/components/Avatar/_styles.scss
Zachary Wasserman adf87140a7
Add ability to prefix Fleet URLs (#2112)
- Add the server_url_prefix flag for configuring this functionality
- Add prefix handling to the server routes
- Refactor JS to use appropriate paths from modules
- Use JS template to get URL prefix into JS environment
- Update webpack config to support prefixing

Thanks to securityonion.net for sponsoring the development of this feature.

Closes #1661
2019-10-16 16:40:45 -07:00

10 lines
190 B
SCSS

.avatar {
background: $white url('../assets/images/avatar-default.png') center 100% no-repeat;
background-size: cover;
border-radius: 50%;
&--small {
@include size(20px);
}
}