30 lines
647 B
SCSS
30 lines
647 B
SCSS
@charset "utf-8";
|
|
|
|
@import "variables";
|
|
|
|
.go-back-top {
|
|
clip-path: polygon(25% 5.77%, 75% 5.77%, 100% 50%, 75% 94.23%, 25% 94.23%, 0% 50%);
|
|
background:linear-gradient(261deg, #8ed2fb .43%, #3d67ff 60.48%, #00356a 120.52%);
|
|
text-align: center;
|
|
padding: 0.625em 0.75em;
|
|
position: fixed;
|
|
bottom: 0.9375em;
|
|
right: 0.9375em;
|
|
cursor: pointer;
|
|
display: none;
|
|
color: $theme-white;
|
|
border-radius: 0.125em;
|
|
z-index: 1050;
|
|
border-radius: 4em;
|
|
height: 50px;
|
|
width: 50px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
&:hover {
|
|
background:#808080;
|
|
transition: all 0.3s linear 0s;
|
|
}
|
|
}
|