mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
437 B
SCSS
25 lines
437 B
SCSS
3 months ago
|
#SimpleGoTop {
|
||
|
position: fixed;
|
||
|
bottom: 1rem;
|
||
|
inset-inline-start: -100px;
|
||
|
z-index: 999;
|
||
|
background: var(--xshop-primary);
|
||
|
width: 50px;
|
||
|
border-radius: var(--xshop-border-radius);
|
||
|
text-align: center;
|
||
|
opacity: .5;
|
||
|
transition: 400ms;
|
||
|
i{
|
||
|
color: var(--xshop-diff);
|
||
|
font-size: 35px;
|
||
|
}
|
||
|
|
||
|
&:hover{
|
||
|
opacity: 1;
|
||
|
}
|
||
|
|
||
|
&.show{
|
||
|
inset-inline-start: 1rem;
|
||
|
}
|
||
|
}
|