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

@@ -74,6 +74,13 @@ onUnmounted(() => {
padding-bottom: calc(2rem + 40px + env(safe-area-inset-bottom));
}
@media (max-width: 640px) {
.main-content {
padding: 1rem;
padding-bottom: calc(1rem + 40px + env(safe-area-inset-bottom));
}
}
@media (min-width: 768px) {
.app-body {
overflow: hidden;

View File

@@ -300,6 +300,15 @@ onUnmounted(() => {
border-radius: 12px;
}
@media (max-width: 640px) {
.input-section {
background: transparent;
border: none;
border-radius: 0;
padding: 0;
}
}
.input-wrapper {
display: flex;
gap: 1rem;

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);