fmt
Browse files
src/App.svelte
CHANGED
|
@@ -135,7 +135,7 @@
|
|
| 135 |
flex-direction: column;
|
| 136 |
height: 100vh;
|
| 137 |
height: 100dvh; /* Dynamic viewport height for mobile */
|
| 138 |
-
background:
|
| 139 |
overflow: hidden;
|
| 140 |
}
|
| 141 |
|
|
|
|
| 135 |
flex-direction: column;
|
| 136 |
height: 100vh;
|
| 137 |
height: 100dvh; /* Dynamic viewport height for mobile */
|
| 138 |
+
background: white;
|
| 139 |
overflow: hidden;
|
| 140 |
}
|
| 141 |
|
src/lib/components/Layout/AppHeader.svelte
CHANGED
|
@@ -45,8 +45,6 @@
|
|
| 45 |
align-items: center;
|
| 46 |
padding: 1rem;
|
| 47 |
padding-top: calc(1rem + env(safe-area-inset-top, 0));
|
| 48 |
-
background: white;
|
| 49 |
-
border-bottom: 1px solid #eee;
|
| 50 |
position: sticky;
|
| 51 |
top: 0;
|
| 52 |
z-index: 100;
|
|
|
|
| 45 |
align-items: center;
|
| 46 |
padding: 1rem;
|
| 47 |
padding-top: calc(1rem + env(safe-area-inset-top, 0));
|
|
|
|
|
|
|
| 48 |
position: sticky;
|
| 49 |
top: 0;
|
| 50 |
z-index: 100;
|
src/lib/components/Layout/TabBar.svelte
CHANGED
|
@@ -51,8 +51,8 @@
|
|
| 51 |
bottom: 0;
|
| 52 |
left: 0;
|
| 53 |
right: 0;
|
| 54 |
-
background:
|
| 55 |
-
border-top: 1px solid #
|
| 56 |
z-index: 1000;
|
| 57 |
padding-bottom: env(safe-area-inset-bottom, 0);
|
| 58 |
}
|
|
@@ -78,12 +78,12 @@
|
|
| 78 |
|
| 79 |
.icon-wrapper {
|
| 80 |
position: relative;
|
| 81 |
-
width:
|
| 82 |
-
height:
|
| 83 |
display: flex;
|
| 84 |
align-items: center;
|
| 85 |
justify-content: center;
|
| 86 |
-
border-radius:
|
| 87 |
}
|
| 88 |
|
| 89 |
.tab-item.active .icon-wrapper {
|
|
@@ -91,10 +91,10 @@
|
|
| 91 |
}
|
| 92 |
|
| 93 |
.tab-icon {
|
| 94 |
-
width:
|
| 95 |
-
height:
|
| 96 |
object-fit: contain;
|
| 97 |
-
filter: grayscale(100%) brightness(0.
|
| 98 |
}
|
| 99 |
|
| 100 |
.tab-item.active .tab-icon {
|
|
|
|
| 51 |
bottom: 0;
|
| 52 |
left: 0;
|
| 53 |
right: 0;
|
| 54 |
+
background: #f5f5f5;
|
| 55 |
+
border-top: 1px solid #e0e0e0;
|
| 56 |
z-index: 1000;
|
| 57 |
padding-bottom: env(safe-area-inset-bottom, 0);
|
| 58 |
}
|
|
|
|
| 78 |
|
| 79 |
.icon-wrapper {
|
| 80 |
position: relative;
|
| 81 |
+
width: 48px;
|
| 82 |
+
height: 48px;
|
| 83 |
display: flex;
|
| 84 |
align-items: center;
|
| 85 |
justify-content: center;
|
| 86 |
+
border-radius: 10px;
|
| 87 |
}
|
| 88 |
|
| 89 |
.tab-item.active .icon-wrapper {
|
|
|
|
| 91 |
}
|
| 92 |
|
| 93 |
.tab-icon {
|
| 94 |
+
width: 32px;
|
| 95 |
+
height: 32px;
|
| 96 |
object-fit: contain;
|
| 97 |
+
filter: grayscale(100%) brightness(0.7);
|
| 98 |
}
|
| 99 |
|
| 100 |
.tab-item.active .tab-icon {
|