@ostack.tech/ui 0.6.4 → 0.6.5
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/dist/ostack-ui.css +3 -0
- package/dist/ostack-ui.css.map +1 -1
- package/dist/ostack-ui.js +16 -17
- package/dist/ostack-ui.js.map +1 -1
- package/package.json +1 -1
- package/scss/components/Root/_Root.scss +5 -0
package/package.json
CHANGED
|
@@ -80,6 +80,11 @@
|
|
|
80
80
|
box-sizing: border-box;
|
|
81
81
|
}
|
|
82
82
|
|
|
83
|
+
// Ensure the `hidden` attribute has priority over other display styles
|
|
84
|
+
[hidden] {
|
|
85
|
+
display: none !important;
|
|
86
|
+
}
|
|
87
|
+
|
|
83
88
|
// Apply these styles only to classless elements (typically used in text),
|
|
84
89
|
// since we don't want to ruin other styles
|
|
85
90
|
:is(p, ul, ol):not([class]) {
|