@navikt/ds-css 6.9.0 → 6.10.0
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 +6 -0
- package/dist/component/index.css +10 -1
- package/dist/component/index.min.css +1 -1
- package/dist/component/modal.css +12 -0
- package/dist/component/modal.min.css +1 -1
- package/dist/components.css +12 -0
- package/dist/components.min.css +1 -1
- package/dist/global/tokens.css +1 -1
- package/dist/index.css +10 -1
- package/dist/index.min.css +1 -1
- package/modal.css +12 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
package/dist/component/index.css
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
@charset "UTF-8";
|
|
2
2
|
/**
|
|
3
3
|
* Do not edit directly
|
|
4
|
-
* Generated on Fri, 31 May 2024
|
|
4
|
+
* Generated on Fri, 31 May 2024 12:15:39 GMT
|
|
5
5
|
*/
|
|
6
6
|
:root, :host {
|
|
7
7
|
--a-spacing-1-alt: 0.375rem;
|
|
@@ -4863,6 +4863,9 @@ button.navds-internalheader__title:active,
|
|
|
4863
4863
|
.navds-modal__header {
|
|
4864
4864
|
padding: var(--a-spacing-6) var(--a-spacing-6) var(--a-spacing-4) var(--a-spacing-6);
|
|
4865
4865
|
}
|
|
4866
|
+
.navds-modal--small .navds-modal__header {
|
|
4867
|
+
padding: var(--a-spacing-4) var(--a-spacing-4) var(--a-spacing-3) var(--a-spacing-4);
|
|
4868
|
+
}
|
|
4866
4869
|
.navds-modal__header-icon svg {
|
|
4867
4870
|
display: inline;
|
|
4868
4871
|
vertical-align: -0.25rem;
|
|
@@ -4878,6 +4881,9 @@ button.navds-internalheader__title:active,
|
|
|
4878
4881
|
overscroll-behavior: contain;
|
|
4879
4882
|
position: relative; /* Needed to make sr-only elements position correctly - see Storybook */
|
|
4880
4883
|
}
|
|
4884
|
+
.navds-modal--small .navds-modal__body {
|
|
4885
|
+
padding: var(--a-spacing-2) var(--a-spacing-4) var(--a-spacing-4);
|
|
4886
|
+
}
|
|
4881
4887
|
.navds-modal__header + .navds-modal__body {
|
|
4882
4888
|
padding-top: var(--a-spacing-0);
|
|
4883
4889
|
}
|
|
@@ -4887,6 +4893,9 @@ button.navds-internalheader__title:active,
|
|
|
4887
4893
|
gap: var(--a-spacing-4);
|
|
4888
4894
|
padding: var(--a-spacing-4) var(--a-spacing-6) var(--a-spacing-6) var(--a-spacing-6);
|
|
4889
4895
|
}
|
|
4896
|
+
.navds-modal--small .navds-modal__footer {
|
|
4897
|
+
padding: var(--a-spacing-4);
|
|
4898
|
+
}
|
|
4890
4899
|
.navds-modal__footer :nth-of-type(2) {
|
|
4891
4900
|
margin-left: auto;
|
|
4892
4901
|
}
|