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 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bge-ui",
3
- "version": "1.7.8",
3
+ "version": "1.7.9",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",
@@ -217,18 +217,21 @@ defineExpose({
217
217
  }
218
218
  }
219
219
 
220
- // @include md {
221
- // .bge-dialog {
222
- // width: 100%;
223
- // left: 0;
224
- // top: 100%;
225
- // transform: translate(0, -100%);
226
-
227
- // .bge-dialog__header {
228
- // font-size: 18px;
229
- // line-height: 32px;
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>