23 lines
348 B
SCSS
23 lines
348 B
SCSS
@charset "utf-8";
|
|
|
|
@import "variables";
|
|
|
|
.go-back-top {
|
|
background:#7c8eb4;
|
|
text-align: center;
|
|
padding: 10px 12px;
|
|
position: fixed;
|
|
bottom: 15px;
|
|
right: 15px;
|
|
cursor: pointer;
|
|
display: none;
|
|
color: $theme-white;
|
|
font-size: 12px;
|
|
border-radius: 2px;
|
|
z-index: 1050;
|
|
|
|
&:hover {
|
|
background:white;
|
|
color:#37518a;
|
|
}
|
|
} |