@examind/block-editor 0.1.8 → 0.1.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.
Files changed (4) hide show
  1. package/dist/index.css +15 -7
  2. package/dist/index.js +1785 -1887
  3. package/dist/index.mjs +1098 -1207
  4. package/package.json +1 -1
package/dist/index.css CHANGED
@@ -1215,10 +1215,6 @@
1215
1215
  main.narrow {
1216
1216
  width: calc(100% - var(--settings-panel-width));
1217
1217
  }
1218
- nav.shown {
1219
- opacity: 1;
1220
- width: var(--settings-panel-width);
1221
- }
1222
1218
  nav {
1223
1219
  opacity: 0;
1224
1220
  position: sticky;
@@ -1226,6 +1222,14 @@
1226
1222
  width: 0;
1227
1223
  height: 100%;
1228
1224
  }
1225
+ nav.shown {
1226
+ opacity: 1;
1227
+ width: var(--settings-panel-width);
1228
+ }
1229
+ nav.hidden {
1230
+ opacity: 1;
1231
+ width: auto;
1232
+ }
1229
1233
  main {
1230
1234
  flex-grow: 1;
1231
1235
  position: relative;
@@ -1237,7 +1241,8 @@
1237
1241
  position: relative;
1238
1242
  padding-top: var(--sl-spacing-large);
1239
1243
  padding-bottom: var(--sl-spacing-large);
1240
- padding-inline: var(--sl-spacing-5x-large);
1244
+ padding-left: 45px;
1245
+ padding-right: 24px;
1241
1246
  min-height: 150px;
1242
1247
  border: 0;
1243
1248
  outline: 0;
@@ -2395,7 +2400,7 @@ sl-progress-bar {
2395
2400
  li {
2396
2401
  padding-left: var(--sl-spacing-2x-small);
2397
2402
  ol {
2398
- margin-bottom: var(--sl-spacing-x-small);
2403
+ margin-bottom: 0;
2399
2404
  }
2400
2405
  }
2401
2406
  li::marker {
@@ -2412,7 +2417,7 @@ sl-progress-bar {
2412
2417
  li {
2413
2418
  padding-left: var(--sl-spacing-2x-small);
2414
2419
  ul {
2415
- margin-bottom: var(--sl-spacing-x-small);
2420
+ margin-bottom: 0;
2416
2421
  }
2417
2422
  }
2418
2423
  li::marker {
@@ -3373,6 +3378,9 @@ article {
3373
3378
  margin-bottom: 0;
3374
3379
  line-height: var(--sl-line-height-normal);
3375
3380
  }
3381
+ &.incorrect p {
3382
+ margin-bottom: var(--sl-spacing-x-small);
3383
+ }
3376
3384
  }
3377
3385
  }
3378
3386