1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

feat(UI): option to disable blur effects, closes #209

This commit is contained in:
2022-03-22 16:13:44 +01:00
parent 8f3efabb69
commit e9079adb25
5 changed files with 39 additions and 6 deletions

View File

@ -167,11 +167,15 @@ option:checked {
}
.modal-overlay{
background: rgba( 255, 255, 255, 0.1 );
background: rgba( 255, 255, 255, 0.1);
box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
}
}
#wrapper:not(.no-blur){
.modal-overlay{
backdrop-filter: blur( 4px );
-webkit-backdrop-filter: blur( 4px );
border: 1px solid rgba( 255, 255, 255, 0.18 );
}
}