mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00

* made better flow cells * made cubical desaturation * made colorfull lab nodes * colorful lab nodes for all text ones * all lab nodes are colorful * disabled lazy loading on heroes * fixed color calculation hook * fixed lab color gradients calculation * fixed cell text on flow
17 lines
364 B
SCSS
17 lines
364 B
SCSS
@import "~/styles/variables";
|
|
|
|
.shade {
|
|
background: linear-gradient(7deg, transparentize($content_bg, 0.05) 30px, transparentize($content_bg, 1) 250px);
|
|
pointer-events: none;
|
|
touch-action: none;
|
|
|
|
&.black::after {
|
|
content: ' ';
|
|
position: absolute;
|
|
top: 10px;
|
|
right: 10px;
|
|
width: 10px;
|
|
height: 10px;
|
|
background-color: blue;
|
|
}
|
|
}
|