mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-06 23:15:34 +08:00
19 lines
286 B
SCSS
19 lines
286 B
SCSS
|
@import "constants";
|
||
|
@import "mixins";
|
||
|
|
||
|
.global-avatar-container {
|
||
|
border-radius: 15px;
|
||
|
display: inline-block;
|
||
|
height: 30px;
|
||
|
overflow: hidden;
|
||
|
position: relative;
|
||
|
width: 30px;
|
||
|
|
||
|
img {
|
||
|
border-radius: 15px;
|
||
|
height: 100%;
|
||
|
object-fit: cover;
|
||
|
width: 100%;
|
||
|
}
|
||
|
}
|