mirror of
https://github.com/muerwre/vault-frontend.git
synced 2025-04-25 04:46:40 +07:00
17 lines
366 B
SCSS
17 lines
366 B
SCSS
@import "src/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;
|
|
}
|
|
}
|