voiptime-components 1.21.90 → 1.21.91

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
@@ -4,7 +4,7 @@
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
7
- "version": "1.21.90",
7
+ "version": "1.21.91",
8
8
  "type": "module",
9
9
  "main": "dist/index.umd.js",
10
10
  "module": "dist/index.es.js",
@@ -1,3 +1,43 @@
1
+ // ── App layout ────────────────────────────────────────────────────────────────
2
+
3
+ // Основний layout після хедера (body = sidebar + main + right panel)
4
+ .vt-layout {
5
+ &__header {
6
+ height: 60px;
7
+ flex-shrink: 0;
8
+ display: flex;
9
+ align-items: center;
10
+ background: var(--color-primary-hover);
11
+ padding: 0 var(--vt-padding-base);
12
+
13
+ // Внутрішній wrapper: logo зліва, actions зправа
14
+ &-inner {
15
+ display: flex;
16
+ align-items: center;
17
+ justify-content: space-between;
18
+ width: 100%;
19
+ }
20
+ }
21
+
22
+ &__body {
23
+ display: flex;
24
+ flex-grow: 1;
25
+ overflow: hidden;
26
+ min-height: 0;
27
+ height: calc(100vh - 60px); // 60px = висота top panel
28
+ }
29
+
30
+ &__main {
31
+ flex-grow: 1;
32
+ position: relative;
33
+ display: flex;
34
+ flex-direction: column;
35
+ overflow: hidden;
36
+ min-width: 0;
37
+ padding: var(--vt-padding-base);
38
+ }
39
+ }
40
+
1
41
  .vt-page {
2
42
  // Стилі сторінки
3
43
  display: flex;