style: remove panel borders and backgrounds on mobile for cleaner look

This commit is contained in:
2026-02-27 07:09:27 +00:00
parent 8b5705c12f
commit 3ea7f63b83
3 changed files with 26 additions and 0 deletions

View File

@@ -239,6 +239,16 @@ body {
box-shadow: var(--glass-shadow);
}
@media (max-width: 640px) {
.glass-panel:not(.modal-content) {
background: transparent;
backdrop-filter: none;
-webkit-backdrop-filter: none;
border: none;
box-shadow: none;
}
}
.btn-neon {
background: var(--button-bg);
border: 1px solid var(--button-border);