mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-24 20:36:40 +07:00
23 lines
288 B
SCSS
23 lines
288 B
SCSS
@import 'src/styles/variables';
|
|
|
|
@keyframes appear {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
.wrap {
|
|
animation: appear 1s;
|
|
}
|
|
|
|
.highlighted {
|
|
box-shadow: $color_primary 0 0 0px 2px;
|
|
}
|
|
|
|
.anchor {
|
|
display: block;
|
|
position: relative;
|
|
top: -($header_height * 2);
|
|
}
|