bge-ui 1.7.8 → 1.7.9
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/dist/style.css +14 -0
- package/package.json +1 -1
- package/src/dialog/index.vue +16 -13
package/dist/style.css
CHANGED
|
@@ -1348,6 +1348,20 @@ to {
|
|
|
1348
1348
|
}
|
|
1349
1349
|
.bge-dialog .bge-dialog__body.full {
|
|
1350
1350
|
padding: 16px 0;
|
|
1351
|
+
}
|
|
1352
|
+
@media only screen and (max-width: 1023px) {
|
|
1353
|
+
.bge-dialog {
|
|
1354
|
+
width: 100%;
|
|
1355
|
+
position: absolute;
|
|
1356
|
+
left: 0;
|
|
1357
|
+
bottom: 0;
|
|
1358
|
+
margin: 0;
|
|
1359
|
+
border-radius: var(--radius-medium, 16px) var(--radius-medium, 16px) 0 0;
|
|
1360
|
+
}
|
|
1361
|
+
.bge-dialog .bge-dialog__header {
|
|
1362
|
+
font-size: 18px;
|
|
1363
|
+
line-height: 32px;
|
|
1364
|
+
}
|
|
1351
1365
|
}.bge-checkbox {
|
|
1352
1366
|
display: inline-flex;
|
|
1353
1367
|
justify-content: flex-start;
|
package/package.json
CHANGED
package/src/dialog/index.vue
CHANGED
|
@@ -217,18 +217,21 @@ defineExpose({
|
|
|
217
217
|
}
|
|
218
218
|
}
|
|
219
219
|
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
220
|
+
@include md {
|
|
221
|
+
.bge-dialog {
|
|
222
|
+
width: 100%;
|
|
223
|
+
position: absolute;
|
|
224
|
+
left: 0;
|
|
225
|
+
bottom: 0;
|
|
226
|
+
// transform: translate(0, -100%);
|
|
227
|
+
margin: 0;
|
|
228
|
+
border-radius: var(--radius-medium, 16px) var(--radius-medium, 16px) 0 0;
|
|
229
|
+
|
|
230
|
+
.bge-dialog__header {
|
|
231
|
+
font-size: 18px;
|
|
232
|
+
line-height: 32px;
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
}
|
|
233
236
|
|
|
234
237
|
</style>
|