@necrolab/dashboard 0.5.9 → 0.5.10
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 +1 -1
- package/src/components/ui/Modal.vue +4 -4
- package/src/views/Console.vue +2 -0
- package/vite.config.js +1 -0
package/package.json
CHANGED
|
@@ -117,16 +117,16 @@ onClickOutside(target, (event) => {
|
|
|
117
117
|
/* iPhone portrait mode - extra spacing for create button */
|
|
118
118
|
@media (max-width: 480px) and (orientation: portrait) {
|
|
119
119
|
.modal-mask {
|
|
120
|
-
padding-bottom: 3rem !important;
|
|
120
|
+
padding-bottom: 3rem !important;
|
|
121
121
|
}
|
|
122
122
|
|
|
123
123
|
.component-modal {
|
|
124
|
-
margin-bottom: 3rem !important;
|
|
125
|
-
max-height:
|
|
124
|
+
margin-bottom: 3rem !important;
|
|
125
|
+
max-height: none !important;
|
|
126
126
|
}
|
|
127
127
|
|
|
128
128
|
.modal-body {
|
|
129
|
-
padding-bottom: 1rem !important;
|
|
129
|
+
padding-bottom: 1rem !important;
|
|
130
130
|
}
|
|
131
131
|
}
|
|
132
132
|
|
package/src/views/Console.vue
CHANGED
|
@@ -163,6 +163,8 @@
|
|
|
163
163
|
height: calc(100vh - 18rem);
|
|
164
164
|
scrollbar-width: thin;
|
|
165
165
|
scrollbar-color: oklch(0.35 0 0) oklch(0.19 0 0);
|
|
166
|
+
touch-action: pan-x pan-y !important;
|
|
167
|
+
-webkit-overflow-scrolling: touch;
|
|
166
168
|
|
|
167
169
|
// Use fixed height on mobile portrait to ensure switches are visible
|
|
168
170
|
@media (max-width: 768px) {
|