14 lines
236 B
Stylus
14 lines
236 B
Stylus
.back-to-top {
|
|
position: fixed;
|
|
right: 20px;
|
|
bottom: 20px;
|
|
transition-property: transform;
|
|
transition-timing-function: ease-out;
|
|
transition-duration: 0.3s;
|
|
z-index: 10;
|
|
|
|
&:hover {
|
|
transform: translateY(-5px);
|
|
}
|
|
}
|