starlight-theme-bejamas 0.1.13 → 0.1.15

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.15
4
+
5
+ ### Patch Changes
6
+
7
+ - [#71](https://github.com/bejamas/ui/pull/71) [`4e38086`](https://github.com/bejamas/ui/commit/4e38086536db86aa7e25dbad3da28dcb0027f7a6) Thanks [@thomkrupa](https://github.com/thomkrupa)! - remove scrollbar from sidebar
8
+
9
+ ## 0.1.14
10
+
11
+ ### Patch Changes
12
+
13
+ - [#66](https://github.com/bejamas/ui/pull/66) [`50515c3`](https://github.com/bejamas/ui/commit/50515c39115a0febdfa683db9263257ec4338baf) Thanks [@thomkrupa](https://github.com/thomkrupa)! - remove margin from console
14
+
3
15
  ## 0.1.13
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.13",
4
+ "version": "0.1.15",
5
5
  "license": "MIT",
6
6
  "description": "A Starlight theme using bejamas/ui",
7
7
  "type": "module",
@@ -110,6 +110,7 @@ const { template } = Astro.locals.starlightRoute.entry.data;
110
110
  width: 100%;
111
111
  background-color: var(--background);
112
112
  overflow-y: auto;
113
+ scrollbar-width: none;
113
114
  }
114
115
 
115
116
  :global([aria-expanded="true"]) ~ .sidebar-pane {
@@ -441,6 +441,25 @@
441
441
  border-top: 0;
442
442
  }
443
443
 
444
+ .sl-bejamas-component-preview + .sl-bejamas-console-log-shell {
445
+ margin-top: 0;
446
+ }
447
+
448
+ .sl-bejamas-console-log-shell + .expressive-code {
449
+ margin-top: 0;
450
+ }
451
+
452
+ .sl-bejamas-console-log-shell + .expressive-code pre {
453
+ border-radius: 0;
454
+ border: 0;
455
+ }
456
+
457
+ .sl-bejamas-console-log-shell + .expressive-code {
458
+ border-radius: 0 0 var(--radius-lg) var(--radius-lg);
459
+ border: 1px solid var(--border);
460
+ border-top: 0;
461
+ }
462
+
444
463
  .expressive-code {
445
464
  border-radius: var(--radius-lg);
446
465
  }