@jjlmoya/utils-drones 1.18.0 → 1.19.0
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
|
@@ -72,6 +72,8 @@
|
|
|
72
72
|
display: grid;
|
|
73
73
|
grid-template-columns: 400px 1fr;
|
|
74
74
|
min-height: 700px;
|
|
75
|
+
width: 100%;
|
|
76
|
+
min-width: 0;
|
|
75
77
|
}
|
|
76
78
|
|
|
77
79
|
.flight-calculator-ui .config-sidebar {
|
|
@@ -81,6 +83,7 @@
|
|
|
81
83
|
display: flex;
|
|
82
84
|
flex-direction: column;
|
|
83
85
|
gap: 3rem;
|
|
86
|
+
min-width: 0;
|
|
84
87
|
}
|
|
85
88
|
|
|
86
89
|
.flight-calculator-ui .main-display {
|
|
@@ -89,6 +92,8 @@
|
|
|
89
92
|
flex-direction: column;
|
|
90
93
|
gap: 3rem;
|
|
91
94
|
background: var(--dft-bg);
|
|
95
|
+
min-width: 0;
|
|
96
|
+
overflow: hidden;
|
|
92
97
|
}
|
|
93
98
|
|
|
94
99
|
.flight-calculator-ui .divider {
|
|
@@ -348,6 +353,7 @@
|
|
|
348
353
|
position: relative;
|
|
349
354
|
height: 350px;
|
|
350
355
|
width: 100%;
|
|
356
|
+
min-width: 0;
|
|
351
357
|
background: var(--dft-bg-surface);
|
|
352
358
|
border-radius: 32px;
|
|
353
359
|
padding: 1.5rem;
|
|
@@ -357,6 +363,7 @@
|
|
|
357
363
|
@media (max-width: 1200px) {
|
|
358
364
|
.flight-calculator-ui .card-grid {
|
|
359
365
|
grid-template-columns: 1fr;
|
|
366
|
+
min-height: auto;
|
|
360
367
|
}
|
|
361
368
|
.flight-calculator-ui .config-sidebar {
|
|
362
369
|
border-right: none;
|