22 lines
379 B
SCSS
22 lines
379 B
SCSS
@charset "utf-8";
|
|
|
|
@import "variables";
|
|
|
|
.go-back-top {
|
|
background: rgba($theme-color-second, 0.9);
|
|
text-align: center;
|
|
padding: 10px 12px;
|
|
position: fixed;
|
|
bottom: 15px;
|
|
right: 15px;
|
|
cursor: pointer;
|
|
display: none;
|
|
color: $theme-white;
|
|
font-size: 0.75em;
|
|
border-radius: 2px;
|
|
z-index: 1050;
|
|
|
|
&:hover {
|
|
background: rgba($theme-color-second, 1);
|
|
}
|
|
} |