mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-17 06:35:14 +08:00
cd7460a4bd
* Add croppie tool to avatar editing
25 lines
398 B
SCSS
25 lines
398 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%;
|
|
}
|
|
}
|
|
|
|
.new-avatar-preview-container {
|
|
height: 200px;
|
|
margin-bottom: 45px;
|
|
position: relative;
|
|
width: 100%;
|
|
}
|