mirror of
https://github.com/akveo/ngx-admin.git
synced 2026-01-31 13:45:18 +01:00
24 lines
444 B
SCSS
24 lines
444 B
SCSS
@import '../../../theme/sass/conf/conf';
|
|
$height: 52px;
|
|
|
|
.ba-back-top {
|
|
position: fixed;
|
|
width: $height;
|
|
height: $height;
|
|
cursor: pointer;
|
|
z-index: 9999;
|
|
display: none;
|
|
text-decoration: none;
|
|
right: 40px;
|
|
bottom: 40px !important;
|
|
font-size: 45px;
|
|
text-align: center;
|
|
opacity: 0.4;
|
|
color: $primary;
|
|
background-color: rgba(0, 0, 0, 0.75);
|
|
border-radius: 50%;
|
|
line-height: 46px;
|
|
&:hover {
|
|
opacity: 0.8;
|
|
}
|
|
}
|