fix view
Browse files
src/lib/components/Layout/AppHeader.svelte
CHANGED
|
@@ -44,10 +44,8 @@
|
|
| 44 |
justify-content: space-between;
|
| 45 |
align-items: center;
|
| 46 |
padding: 1rem;
|
| 47 |
-
|
| 48 |
-
|
| 49 |
-
top: 0;
|
| 50 |
-
z-index: 100;
|
| 51 |
}
|
| 52 |
|
| 53 |
.app-title {
|
|
|
|
| 44 |
justify-content: space-between;
|
| 45 |
align-items: center;
|
| 46 |
padding: 1rem;
|
| 47 |
+
background: white;
|
| 48 |
+
border-bottom: 1px solid #f0f0f0;
|
|
|
|
|
|
|
| 49 |
}
|
| 50 |
|
| 51 |
.app-title {
|
src/lib/components/Layout/ProgressBar.svelte
CHANGED
|
@@ -44,11 +44,19 @@
|
|
| 44 |
display: flex;
|
| 45 |
align-items: center;
|
| 46 |
gap: 0.75rem;
|
| 47 |
-
padding: 0.
|
|
|
|
| 48 |
background: white;
|
| 49 |
border-bottom: 1px solid #f0f0f0;
|
| 50 |
}
|
| 51 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
.progress-bar {
|
| 53 |
flex: 1;
|
| 54 |
background: #f0f0f0;
|
|
|
|
| 44 |
display: flex;
|
| 45 |
align-items: center;
|
| 46 |
gap: 0.75rem;
|
| 47 |
+
padding: 0.4rem 1rem;
|
| 48 |
+
padding-top: env(safe-area-inset-top);
|
| 49 |
background: white;
|
| 50 |
border-bottom: 1px solid #f0f0f0;
|
| 51 |
}
|
| 52 |
|
| 53 |
+
@media (max-width: 768px) {
|
| 54 |
+
.progress-container {
|
| 55 |
+
padding: 0.3rem 1rem;
|
| 56 |
+
padding-top: env(safe-area-inset-top);
|
| 57 |
+
}
|
| 58 |
+
}
|
| 59 |
+
|
| 60 |
.progress-bar {
|
| 61 |
flex: 1;
|
| 62 |
background: #f0f0f0;
|