1
Fork 0

add blur optimization :3

This commit is contained in:
ashley 2024-08-27 21:32:47 +00:00
parent 78802224c5
commit 5b7ed14da8

View file

@ -90,16 +90,23 @@
.comments-area .comment-list { .comments-area .comment-list {
padding-bottom: 30px; padding-bottom: 30px;
} }
.popup { .popup {
display: none; display: none;
background-color: #241c1cab; background-color: #333;
backdrop-filter: blur(31px);
position: absolute; position: absolute;
padding: 10px; padding: 10px;
border: solid 1.5px gray; border: solid 1.5px gray;
border-radius: 10px; border-radius: 10px;
} }
@media (min-width: 1080px) {
.popup {
background-color: #241c1cab;
backdrop-filter: blur(31px);
}
}
.popup > div { .popup > div {
margin-bottom: 2px; margin-bottom: 2px;
font-family: var(--text-font-primary); font-family: var(--text-font-primary);