@db-ux/core-components 3.0.2 → 3.0.3
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/build/components/button/button.css +1 -1
- package/build/components/button/button.scss +1 -1
- package/build/components/popover/popover.css +1 -1
- package/build/components/tooltip/tooltip.css +1 -1
- package/build/styles/absolute.css +2 -2
- package/build/styles/index.css +2 -2
- package/build/styles/internal/_popover-component.scss +4 -1
- package/build/styles/relative.css +2 -2
- package/build/styles/rollup.css +2 -2
- package/build/styles/webpack.css +2 -2
- package/package.json +4 -4
|
@@ -236,7 +236,10 @@ $popover-gap-inset: calc(-1 * #{$popover-gap-size});
|
|
|
236
236
|
z-index: 1337;
|
|
237
237
|
// revert this if popover is included in button
|
|
238
238
|
white-space: normal;
|
|
239
|
-
max-inline-size:
|
|
239
|
+
max-inline-size: min(
|
|
240
|
+
#{variables.$db-container-xs},
|
|
241
|
+
calc(100vw - 2 * #{variables.$db-spacing-fixed-md})
|
|
242
|
+
);
|
|
240
243
|
block-size: fit-content;
|
|
241
244
|
inline-size: fit-content;
|
|
242
245
|
|