newsreader/src/newsreader/scss/components/scroll-to-top/_scroll-to-top.scss
2024-10-06 20:39:05 +02:00

39 lines
545 B
SCSS

@import '../../partials/variables';
.scroll-to-top {
display: flex;
gap: 10px;
position: fixed;
right: 15%;
bottom: 0;
margin: 0 0 20px 0;
@media (max-width: $mobile-breakpoint) {
display: none;
}
&:hover {
cursor: pointer;
}
&__icon {
font-style: initial;
padding: 10px;
background-color: var(--background-color-secondary);
&--top:before {
@include font-awesome;
content: "\f062";
}
&--bottom:before {
@include font-awesome;
content: "\f063";
}
}
}