@navikt/ds-css 5.9.0 → 5.9.2
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 +8 -0
- package/dist/component/index.css +8 -4
- package/dist/component/index.min.css +1 -1
- package/dist/component/modal.css +8 -3
- package/dist/component/modal.min.css +1 -1
- package/dist/components.css +8 -3
- package/dist/components.min.css +1 -1
- package/dist/global/tokens.css +1 -1
- package/dist/index.css +8 -4
- package/dist/index.min.css +1 -1
- package/modal.css +8 -3
- 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
|
|
4
|
+
* Generated on Thu, 02 Nov 2023 21:04:30 GMT
|
|
5
5
|
*/
|
|
6
6
|
:root, :host {
|
|
7
7
|
--a-spacing-1-alt: 0.375rem;
|
|
@@ -4473,12 +4473,16 @@ button.navds-internalheader__title:active,
|
|
|
4473
4473
|
}
|
|
4474
4474
|
@media (min-width: 480px) {
|
|
4475
4475
|
.navds-modal {
|
|
4476
|
-
max-width: calc(
|
|
4477
|
-
max-height: calc((100% - 6px) - 2em);
|
|
4476
|
+
max-width: calc(100% - 6px - 2em);
|
|
4478
4477
|
}
|
|
4479
4478
|
|
|
4480
4479
|
.navds-modal--autowidth {
|
|
4481
|
-
max-width: min(700px, calc(
|
|
4480
|
+
max-width: min(700px, calc(100% - 6px - 2em));
|
|
4481
|
+
}
|
|
4482
|
+
}
|
|
4483
|
+
@media (min-height: 480px) {
|
|
4484
|
+
.navds-modal {
|
|
4485
|
+
max-height: calc(100% - 6px - 2em);
|
|
4482
4486
|
}
|
|
4483
4487
|
}
|
|
4484
4488
|
.navds-modal::backdrop {
|