@norges-domstoler/dds-components 17.5.2 → 17.5.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/dist/index.css +2 -1
- package/dist/index.css.map +1 -1
- package/dist/index.d.mts +4 -8
- package/dist/index.d.ts +4 -8
- package/dist/index.js +596 -571
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +335 -308
- package/dist/index.mjs.map +1 -1
- package/package.json +6 -6
package/dist/index.css
CHANGED
|
@@ -1695,6 +1695,7 @@
|
|
|
1695
1695
|
|
|
1696
1696
|
/* src/components/Drawer/Drawer.module.css */
|
|
1697
1697
|
.Drawer_container {
|
|
1698
|
+
--dds-transition-duration-drawer-move: 0.2s;
|
|
1698
1699
|
--dds-drawer-content-container-padding: var(--dds-spacing-x0-25);
|
|
1699
1700
|
--dds-drawer-container-padding: calc( var(--dds-spacing-x1) - var(--dds-drawer-content-container-padding) ) calc(var(--dds-spacing-x1) - var(--dds-drawer-content-container-padding)) calc(var(--dds-spacing-x1) - var(--dds-drawer-content-container-padding)) calc(var(--dds-spacing-x1-5) - var(--dds-drawer-content-container-padding));
|
|
1700
1701
|
position: fixed;
|
|
@@ -1707,7 +1708,7 @@
|
|
|
1707
1708
|
z-index: 100;
|
|
1708
1709
|
padding: var(--dds-drawer-container-padding);
|
|
1709
1710
|
@media (prefers-reduced-motion: no-preference) {
|
|
1710
|
-
transition: transform var(--dds-transition-duration-
|
|
1711
|
+
transition: transform var(--dds-transition-duration-drawer-move);
|
|
1711
1712
|
}
|
|
1712
1713
|
}
|
|
1713
1714
|
.Drawer_container--small {
|