@norges-domstoler/dds-components 0.0.0-dev-20241128105759 → 0.0.0-dev-20241128111424
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 +11 -8
- package/dist/index.css.map +1 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +3 -3
package/dist/index.css
CHANGED
|
@@ -844,31 +844,31 @@
|
|
|
844
844
|
}
|
|
845
845
|
|
|
846
846
|
/* src/components/helpers/Paper/Paper.module.css */
|
|
847
|
-
.Paper_container {
|
|
847
|
+
:where(.Paper_container) {
|
|
848
848
|
box-sizing: border-box;
|
|
849
849
|
background-color: var(--dds-color-surface-default);
|
|
850
850
|
border-radius: var(--dds-border-radius-surface);
|
|
851
851
|
margin: 0;
|
|
852
852
|
}
|
|
853
|
-
.Paper_shadow--1 {
|
|
853
|
+
:where(.Paper_shadow--1) {
|
|
854
854
|
box-shadow: var(--dds-shadow-1);
|
|
855
855
|
}
|
|
856
|
-
.Paper_shadow--2 {
|
|
856
|
+
:where(.Paper_shadow--2) {
|
|
857
857
|
box-shadow: var(--dds-shadow-2);
|
|
858
858
|
}
|
|
859
|
-
.Paper_shadow--3 {
|
|
859
|
+
:where(.Paper_shadow--3) {
|
|
860
860
|
box-shadow: var(--dds-shadow-3);
|
|
861
861
|
}
|
|
862
|
-
.Paper_shadow--4 {
|
|
862
|
+
:where(.Paper_shadow--4) {
|
|
863
863
|
box-shadow: var(--dds-shadow-4);
|
|
864
864
|
}
|
|
865
|
-
.Paper_border--default {
|
|
865
|
+
:where(.Paper_border--default) {
|
|
866
866
|
border: 1px solid var(--dds-color-border-default);
|
|
867
867
|
}
|
|
868
|
-
.Paper_border--subtle {
|
|
868
|
+
:where(.Paper_border--subtle) {
|
|
869
869
|
border: 1px solid var(--dds-color-border-subtle);
|
|
870
870
|
}
|
|
871
|
-
.Paper_border--on-inverse {
|
|
871
|
+
:where(.Paper_border--on-inverse) {
|
|
872
872
|
border: 1px solid var(--dds-color-border-inverse);
|
|
873
873
|
}
|
|
874
874
|
|
|
@@ -1585,6 +1585,8 @@
|
|
|
1585
1585
|
.InputMessage_container--error {
|
|
1586
1586
|
padding: var(--dds-spacing-x0-25) var(--dds-spacing-x0-5);
|
|
1587
1587
|
background-color: var(--dds-color-surface-danger-default);
|
|
1588
|
+
border-bottom-left-radius: var(--dds-border-radius-surface);
|
|
1589
|
+
border-bottom-right-radius: var(--dds-border-radius-surface);
|
|
1588
1590
|
gap: var(--dds-spacing-x0-25);
|
|
1589
1591
|
.InputMessage_icon {
|
|
1590
1592
|
color: var(--dds-color-icon-on-danger-default);
|
|
@@ -1706,6 +1708,7 @@
|
|
|
1706
1708
|
justify-content: flex-end;
|
|
1707
1709
|
min-width: 300px;
|
|
1708
1710
|
z-index: 100;
|
|
1711
|
+
border-radius: 0;
|
|
1709
1712
|
padding: var(--dds-drawer-container-padding);
|
|
1710
1713
|
@media (prefers-reduced-motion: no-preference) {
|
|
1711
1714
|
transition: transform var(--dds-transition-duration-drawer-move);
|