create-nix-app 1.0.12 → 1.0.13

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-nix-app",
3
- "version": "1.0.12",
3
+ "version": "1.0.13",
4
4
  "description": "Scaffolding tool for Nix.js reactive micro-framework",
5
5
  "type": "module",
6
6
  "bin": {
@@ -7,15 +7,34 @@
7
7
  }
8
8
 
9
9
  ion-content {
10
- --padding-bottom: 84px;
10
+ --padding-bottom: calc(88px + env(safe-area-inset-bottom));
11
11
  }
12
12
 
13
13
  .app-tab-bar {
14
+ position: fixed;
15
+ left: 0;
16
+ right: 0;
17
+ bottom: 0;
18
+ z-index: 1000;
19
+ display: flex;
20
+ align-items: stretch;
21
+ min-height: 64px;
22
+ padding-bottom: env(safe-area-inset-bottom);
23
+
14
24
  --background: #ffffff;
15
- --color: var(--ion-color-medium);
16
- --color-selected: var(--ion-color-primary);
25
+ --color: #6b7280;
26
+ --color-selected: #2563eb;
27
+ --border: 0;
28
+
17
29
  border-top: 1px solid rgba(0, 0, 0, 0.08);
18
- box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
30
+ box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
31
+ }
32
+
33
+ .app-tab-bar ion-tab-button {
34
+ min-height: 64px;
35
+ font-size: 11px;
36
+ letter-spacing: 0.02em;
37
+ text-transform: none;
19
38
  }
20
39
 
21
40
  .app-tab-bar ion-tab-button.tab-active {
@@ -23,7 +42,13 @@ ion-content {
23
42
  }
24
43
 
25
44
  .app-tab-bar ion-tab-button ion-icon {
26
- font-size: 1.25rem;
45
+ font-size: 1.2rem;
46
+ margin-bottom: 2px;
47
+ }
48
+
49
+ .app-tab-bar ion-tab-button.tab-active ion-icon,
50
+ .app-tab-bar ion-tab-button.tab-active ion-label {
51
+ color: #2563eb;
27
52
  }
28
53
 
29
54
  .login-page {