mirror of
https://github.com/vercel/commerce.git
synced 2025-07-29 13:11:22 +00:00
24 lines
480 B
SCSS
24 lines
480 B
SCSS
@import '../../../styles/utilities';
|
|
|
|
.scrollToTop {
|
|
@apply hidden;
|
|
|
|
@screen md {
|
|
&.show {
|
|
@apply block rounded-lg fixed cursor-pointer;
|
|
right: 11.2rem;
|
|
bottom: 21.6rem;
|
|
width: 6.4rem;
|
|
height: 6.4rem;
|
|
background-color: var(--border-line);
|
|
}
|
|
|
|
&.hide {
|
|
@apply hidden;
|
|
}
|
|
}
|
|
|
|
.scrollToTopBtn {
|
|
@apply outline-none w-full h-full;
|
|
}
|
|
} |