mirror of
https://github.com/Derpy-Leggies/OnlyLegs.git
synced 2025-01-11 00:55:40 +00:00
Michał
5db8fa52e8
Fixed some Sass issues No image... image Squished some bugs involving uploading broken files
30 lines
495 B
SCSS
30 lines
495 B
SCSS
#topButton {
|
|
margin: 0;
|
|
padding: 0.5rem;
|
|
|
|
width: 2.5rem;
|
|
height: 2.5rem;
|
|
|
|
position: fixed;
|
|
bottom: 0.75rem;
|
|
right: -3rem;
|
|
|
|
display: flex; // hidden
|
|
justify-content: center;
|
|
align-items: center;
|
|
|
|
border-radius: 50%;
|
|
background-color: $black300;
|
|
opacity: 0; // hidden
|
|
|
|
z-index: 2;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: all 0.2s cubic-bezier(.86, 0, .07, 1);
|
|
|
|
&:hover {
|
|
background-color: $black200;
|
|
color: $green;
|
|
}
|
|
} |