minor design changes

This commit is contained in:
2022-05-06 17:20:00 +02:00
parent 6823641f73
commit e775b7d6a2
2 changed files with 10 additions and 2 deletions

View File

@@ -176,7 +176,7 @@ main {
#popup {
width: 300px;
background-color: var(--popup-bg);
background-color: var(--left-color);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
border-radius: 8px;
@@ -187,7 +187,7 @@ main {
#smol-popup {
width: 200px;
background-color: var(--popup-bg);
background-color: var(--left-color);
-webkit-backdrop-filter: blur(20px);
backdrop-filter: blur(20px);
border-radius: 8px;
@@ -201,6 +201,12 @@ main {
/* padding-top: 0px; account for Funny */
}
@supports (backdrop-filter: blur(10px)) or (--webkit-backdrop-filter: blur(10px)) {
#popup, #smol-popup {
background-color: var(--popup-bg);
}
}
#popup h1, #smol-popup h1 {
text-align: center;
margin: 0;