@trebired/frontend 12.8.0 → 12.8.1

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
@@ -4,6 +4,14 @@ All notable changes to `@trebired/frontend` will be documented here.
4
4
 
5
5
  This project follows semantic versioning once published.
6
6
 
7
+ ## 12.8.1
8
+
9
+ ### Changed
10
+
11
+ - Modal content now uses the `scroll-min` thin scrollbar styling by default, matching the
12
+ dropdown panels and other scrollable inputs. Previously it used the browser's default
13
+ scrollbar, which stood out against the rest of the UI.
14
+
7
15
  ## 12.8.0
8
16
 
9
17
  ### Fixed
@@ -1,4 +1,5 @@
1
1
  @use "@trebired/bundler/namespace" as ns;
2
+ @use "../../inputs/advanced/input/styles/field.scss" as *;
2
3
  #{ns.class("modal")},
3
4
 
4
5
  #{ns.data("modal")} {
@@ -40,6 +41,7 @@
40
41
  #{ns.element-class("modal", "content")},
41
42
 
42
43
  #{ns.data("modal-content")} {
44
+ @include component-scroll-min;
43
45
  width: var(#{ns.css-var("overlay-modal-content-width")}, min(720px, calc(100vw - 48px)));
44
46
  max-height: var(#{ns.css-var("overlay-modal-content-max-h")}, min(80vh, 720px));
45
47
  box-sizing: border-box;
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  }
9
9
  },
10
10
  "name": "@trebired/frontend",
11
- "version": "12.8.0",
11
+ "version": "12.8.1",
12
12
  "description": "Generic browser runtime systems for Trebired frontend packages and applications.",
13
13
  "type": "module",
14
14
  "private": false,