starlight-theme-bejamas 0.1.6 → 0.1.8

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/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # starlight-theme-bejamas
2
2
 
3
+ ## 0.1.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#40](https://github.com/bejamas/ui/pull/40) [`58fbd77`](https://github.com/bejamas/ui/commit/58fbd775b67b2e132662ecfd9e69f674b004e675) Thanks [@thomkrupa](https://github.com/thomkrupa)! - improve z-indexes for code blocks
8
+
9
+ ## 0.1.7
10
+
11
+ ### Patch Changes
12
+
13
+ - [#30](https://github.com/bejamas/ui/pull/30) [`4f2f6d4`](https://github.com/bejamas/ui/commit/4f2f6d41ba455d0dc87ee8db45974f78c7ca4a7d) Thanks [@thomkrupa](https://github.com/thomkrupa)! - decrease inline padding for mobile component preview
14
+
3
15
  ## 0.1.6
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "starlight-theme-bejamas",
3
3
  "author": "Bejamas",
4
- "version": "0.1.6",
4
+ "version": "0.1.8",
5
5
  "license": "MIT",
6
6
  "description": "A Starlight theme using bejamas/ui",
7
7
  "type": "module",
@@ -370,7 +370,7 @@
370
370
  button[data-open-modal] {
371
371
  border-color: var(--border);
372
372
  color: var(--foreground);
373
- box-shadow: var(--shadow-xs);
373
+ box-shadow: none;
374
374
  background-color: var(--background);
375
375
  height: calc(var(--spacing) * 9);
376
376
  }
@@ -421,6 +421,8 @@
421
421
  justify-content: center;
422
422
  align-items: center;
423
423
  background-color: var(--background);
424
+ position: relative;
425
+ z-index: 10;
424
426
  }
425
427
 
426
428
  .sl-bejamas-component-preview + .expressive-code {
@@ -456,14 +458,16 @@
456
458
  bottom: 50%;
457
459
  transform: translateY(50%) translateX(-50%);
458
460
  height: calc(var(--spacing) * 8.5);
461
+ z-index: 3;
459
462
  }
460
463
 
461
464
  .expressive-code .ec-collapse.ec-collapse--collapsed .ec-collapse__content {
462
465
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
463
466
  }
464
467
 
465
- .ec-collapse__gradient {
468
+ .expressive-code .ec-collapse__gradient {
466
469
  height: 100%;
470
+ z-index: 1;
467
471
  }
468
472
 
469
473
  .ec-collapse.ec-collapse--collapsed::after {
@@ -488,6 +492,7 @@
488
492
  );
489
493
  bottom: 0;
490
494
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
495
+ z-index: 2;
491
496
  }
492
497
 
493
498
  .ec-collapse.ec-collapse--expanded .ec-collapse__toggle {