@quilltap/theme-storybook 1.0.15 → 1.0.16
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 +5 -0
- package/dist/index.css +3 -0
- package/package.json +1 -1
- package/src/css/qt-components.css +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to `@quilltap/theme-storybook` will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [1.0.16] - 2026-01-30
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
- `.qt-dialog-wide` class for dialogs that match page container width (uses `--qt-page-max-width` variable)
|
|
9
|
+
|
|
5
10
|
## [1.0.15] - 2026-01-29
|
|
6
11
|
|
|
7
12
|
### Added
|
package/dist/index.css
CHANGED
package/package.json
CHANGED
|
@@ -642,6 +642,11 @@
|
|
|
642
642
|
padding-top: 0;
|
|
643
643
|
}
|
|
644
644
|
|
|
645
|
+
/* Wide dialog variant - matches page container width */
|
|
646
|
+
.qt-dialog-wide {
|
|
647
|
+
max-width: min(var(--qt-page-max-width, 75rem), calc(100vw - 2rem));
|
|
648
|
+
}
|
|
649
|
+
|
|
645
650
|
/* ==========================================================================
|
|
646
651
|
TAB COMPONENTS
|
|
647
652
|
========================================================================== */
|