Files
site/themes/custom/src/css/_partial/_back-to-top.scss
2018-07-16 21:46:31 -04:00

24 lines
413 B
SCSS

// ==============================
// Back to top
// =============================
.back-to-top {
display: none;
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);
}
}
@include max-screen() {
.back-to-top {
display: none !important;
}
}