mirror of
https://github.com/dillonzq/LoveIt.git
synced 2024-11-15 03:16:30 +01:00
90184ca3e7
* feat(search): add local search * docs: add docs for search
16 lines
274 B
SCSS
16 lines
274 B
SCSS
#mask {
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: -1;
|
|
background-color: rgba(0, 0, 0, 0);
|
|
|
|
.blur & {
|
|
z-index: 100;
|
|
background-color: rgba(0, 0, 0, .25);
|
|
}
|
|
}
|