25 lines
457 B
SCSS
25 lines
457 B
SCSS
@import '../common/abstracts/variable';
|
|
@import '../common/abstracts/mixin';
|
|
|
|
@include b(backtop) {
|
|
position: fixed;
|
|
background-color: $-backtop-bg;
|
|
width: 40px;
|
|
height: 40px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: $-color-gray-8;
|
|
|
|
@include edeep(backicon) {
|
|
font-size: $-backtop-icon-size;
|
|
}
|
|
|
|
@include when(circle) {
|
|
border-radius: 50%;
|
|
}
|
|
|
|
@include when(square) {
|
|
border-radius: 4px;
|
|
}
|
|
} |