@digigov/css 2.0.0-6c42d5eb → 2.0.0-6e3977bc

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.
Files changed (76) hide show
  1. package/defaultTheme/button.json +7 -3
  2. package/defaultTheme/form.json +102 -0
  3. package/dist/base/index.css +1 -1
  4. package/dist/base.js +1 -1
  5. package/dist/components.js +1 -1
  6. package/dist/digigov.css +3 -3
  7. package/dist/utilities/index.css +1 -1
  8. package/dist/utilities.js +1 -1
  9. package/package.json +5 -5
  10. package/postcss.config.js +1 -0
  11. package/src/components/blockquote.common.css +14 -0
  12. package/src/components/blockquote.css +9 -0
  13. package/src/components/blockquote.native.css +11 -0
  14. package/src/components/button.common.css +62 -0
  15. package/src/components/button.css +13 -28
  16. package/src/components/button.native.css +56 -0
  17. package/src/components/card.common.css +33 -0
  18. package/src/components/card.css +11 -11
  19. package/src/components/card.native.css +29 -0
  20. package/src/components/checkboxes.common.css +16 -0
  21. package/src/components/checkboxes.css +6 -8
  22. package/src/components/checkboxes.native.css +28 -0
  23. package/src/components/code.css +5 -8
  24. package/src/components/copy-to-clipboard.native.css +28 -0
  25. package/src/components/details.common.css +26 -0
  26. package/src/components/details.css +6 -9
  27. package/src/components/details.native.css +26 -0
  28. package/src/components/dropdown.common.css +23 -0
  29. package/src/components/dropdown.css +7 -9
  30. package/src/components/dropdown.native.css +28 -0
  31. package/src/components/form.common.css +82 -0
  32. package/src/components/form.css +30 -5
  33. package/src/components/form.native.css +133 -0
  34. package/src/components/header.common.css +36 -0
  35. package/src/components/header.css +11 -15
  36. package/src/components/header.native.css +34 -0
  37. package/src/components/index.css +1 -0
  38. package/src/components/layout.common.css +36 -0
  39. package/src/components/layout.css +12 -11
  40. package/src/components/layout.native.css +39 -0
  41. package/src/components/masthead.css +1 -1
  42. package/src/components/nav.common.css +22 -0
  43. package/src/components/nav.css +6 -8
  44. package/src/components/nav.native.css +41 -0
  45. package/src/components/notification-banner.common.css +46 -0
  46. package/src/components/notification-banner.css +8 -6
  47. package/src/components/notification-banner.native.css +42 -0
  48. package/src/components/panel.common.css +30 -0
  49. package/src/components/panel.css +6 -15
  50. package/src/components/panel.native.css +20 -0
  51. package/src/components/phase-banner.common.css +23 -0
  52. package/src/components/phase-banner.css +7 -6
  53. package/src/components/phase-banner.native.css +31 -0
  54. package/src/components/radios.common.css +16 -0
  55. package/src/components/radios.css +5 -11
  56. package/src/components/radios.native.css +24 -0
  57. package/src/components/summary-list.common.css +90 -0
  58. package/src/components/summary-list.css +74 -17
  59. package/src/components/summary-list.native.css +93 -0
  60. package/src/components/svg-icons.common.css +56 -0
  61. package/src/components/svg-icons.native.css +55 -0
  62. package/src/components/test.css +7 -0
  63. package/src/components/typography.common.css +140 -0
  64. package/src/components/typography.css +30 -79
  65. package/src/components/typography.native.css +97 -0
  66. package/src/components/warning-text.common.css +23 -0
  67. package/src/components/warning-text.css +1 -1
  68. package/src/components/warning-text.native.css +22 -0
  69. package/src/index.native.css +20 -0
  70. package/src/utilities/index.css +3 -1828
  71. package/src/utilities/index.native.css +2 -0
  72. package/src/utilities/layout.css +231 -0
  73. package/src/utilities/layout.native.css +278 -0
  74. package/src/utilities/print.css +11 -0
  75. package/src/utilities/spacing.css +2133 -0
  76. package/src/utilities/utilities.css +10 -0
@@ -0,0 +1,56 @@
1
+ /* stylelint-disable declaration-block-no-redundant-longhand-properties */
2
+ /* stylelint-disable digigov/nest-related-rules */
3
+ @import './button.common.css';
4
+
5
+ .ds-btn {
6
+ @apply util-btn min-h-4 flex-row flex-nowrap justify-center;
7
+ border-bottom-width: 2px;
8
+ border-bottom-color: var(--color-base-content);
9
+ padding-top: calc( 1.5 * var(--btn-padding-y)) !important;
10
+ padding-bottom: calc( 1.5 * var(--btn-padding-y)) !important;
11
+ }
12
+ .ds-btn__text {
13
+ @apply util-btn-text min-h-4 text-center;
14
+ }
15
+ .ds-btn--dense {
16
+ @apply min-h-6;
17
+ }
18
+ .ds-btn--dense__text {
19
+ @apply min-h-4;
20
+ }
21
+ .ds-btn--disabled {
22
+ @apply util-btn--disabled;
23
+ }
24
+ .ds-btn--disabled__text {
25
+ @apply util-btn--disabled-text;
26
+ }
27
+ .ds-btn-primary {
28
+ @apply util-btn-primary util-btn;
29
+ }
30
+ .ds-btn-primary__text {
31
+ @apply util-btn-primary-text;
32
+ }
33
+ .ds-btn-secondary {
34
+ @apply util-btn-secondary;
35
+ }
36
+ .ds-btn-secondary__text {
37
+ @apply util-btn-secondary-text;
38
+ }
39
+ .ds-btn-warning {
40
+ @apply util-btn-warning;
41
+ }
42
+ .ds-btn-warning__text {
43
+ @apply util-btn-warning-text;
44
+ }
45
+ .ds-btn-cta {
46
+ padding-top: calc( 2.25 * var(--btn-padding-y)) !important;
47
+ padding-bottom: calc( 2.25 * var(--btn-padding-y)) !important;
48
+ }
49
+
50
+ .ds-btn-cta__text {
51
+ @apply util-btn-cta-text;
52
+ }
53
+ .ds-btn-cta__icon {
54
+ @apply ml-2;
55
+ fill: var(--color-white) !important;
56
+ }
@@ -0,0 +1,33 @@
1
+ @tailwind utilities;
2
+
3
+ @layer utilities {
4
+ .util-card {
5
+ @apply mb-7 text-base-content max-w-full bg-base-100;
6
+ border-radius: var(--card-border-radius);
7
+ }
8
+ .util-card--border {
9
+ @apply border-2 border-base-content p-6;
10
+ }
11
+ .util-card--border-top {
12
+ @apply border-t border-base-300 pt-4;
13
+ }
14
+ .util-card--border-light {
15
+ @apply border-base-300;
16
+ }
17
+ .util-card--border-dark {
18
+ @apply border-base-content;
19
+ }
20
+ .util-card--divider {
21
+ --card-border-radius: 0;
22
+ @apply border-b border-base-300 pb-4 mb-4;
23
+ }
24
+ .util-card__heading-text {
25
+ @apply md:text-2xl text-xl font-bold;
26
+ }
27
+ .util-card__body {
28
+ @apply flex flex-col gap-3 md:gap-4;
29
+ }
30
+ .util-card__action {
31
+ @apply flex flex-wrap items-center gap-y-4 mt-auto;
32
+ }
33
+ }
@@ -1,6 +1,7 @@
1
+ @import './card.common.css';
2
+
1
3
  .ds-card {
2
- @apply mb-7 text-base-content max-w-full;
3
- border-radius: var(--card-border-radius);
4
+ @apply util-card;
4
5
  &.ds-card--dense,
5
6
  .ds-dense & {
6
7
  @apply mb-5;
@@ -9,7 +10,7 @@
9
10
  }
10
11
  }
11
12
  &.ds-card--border {
12
- @apply border-2 border-base-content p-6;
13
+ @apply util-card--border;
13
14
  &.ds-card--border-light {
14
15
  @apply border;
15
16
  }
@@ -19,7 +20,7 @@
19
20
  }
20
21
  }
21
22
  &.ds-card--border-top {
22
- @apply border-t border-base-300 pt-4;
23
+ @apply util-card--border-top;
23
24
  &.ds-card--border-dark {
24
25
  @apply border-t-3;
25
26
  }
@@ -29,8 +30,7 @@
29
30
  }
30
31
  }
31
32
  &.ds-card--divider {
32
- --card-border-radius: 0;
33
- @apply border-b border-base-300 pb-4 mb-4;
33
+ @apply util-card--divider;
34
34
  }
35
35
  &.ds-card--cta {
36
36
  .ds-card__body {
@@ -54,17 +54,17 @@
54
54
  }
55
55
  }
56
56
  &.ds-card--border-light {
57
- @apply border-base-300;
57
+ @apply util-card--border-light;
58
58
  }
59
59
  &.ds-card--border-dark {
60
- @apply border-base-content;
60
+ @apply util-card--border-dark;
61
61
  }
62
62
  &.ds-card--full-height {
63
63
  @apply h-full;
64
64
  }
65
65
  }
66
66
  .ds-card__body {
67
- @apply flex flex-col gap-3 md:gap-4 h-full;
67
+ @apply util-card__body h-full;
68
68
  }
69
69
  .ds-card__image {
70
70
  @apply w-full h-40
@@ -73,7 +73,7 @@
73
73
  border border-base-300;
74
74
  }
75
75
  .ds-card__heading {
76
- @apply md:text-2xl text-xl font-bold;
76
+ @apply util-card__heading-text;
77
77
  word-break: break-word;
78
78
  }
79
79
  .ds-card__content {
@@ -82,7 +82,7 @@
82
82
  line-height: var(--card__content-line-height);
83
83
  }
84
84
  .ds-card__action {
85
- @apply flex flex-wrap items-center gap-y-4 mt-auto;
85
+ @apply util-card__action;
86
86
  }
87
87
  @media print {
88
88
  /* When ds-card__action is empty at print, content at :after limits its height. */
@@ -0,0 +1,29 @@
1
+ @import './card.common.css';
2
+
3
+ .ds-card {
4
+ @apply util-card;
5
+ }
6
+ .ds-card--border {
7
+ @apply util-card--border;
8
+ }
9
+ .ds-card__body {
10
+ @apply util-card__body;
11
+ }
12
+ .ds-card__action {
13
+ @apply util-card__action;
14
+ }
15
+ .ds-card--border-top {
16
+ @apply util-card--border-top;
17
+ }
18
+ .ds-card--border-light {
19
+ @apply util-card--border-light;
20
+ }
21
+ .ds-card--border-dark {
22
+ @apply util-card--border-dark;
23
+ }
24
+ .ds-card--divider {
25
+ @apply util-card--divider;
26
+ }
27
+ .ds-card__heading__text {
28
+ @apply util-card__heading-text;
29
+ }
@@ -0,0 +1,16 @@
1
+ @tailwind utilities;
2
+
3
+ @layer utilities {
4
+ .util-checkboxes__item {
5
+ @apply relative mb-4 min-h-10;
6
+ }
7
+ .util-checkboxes__input {
8
+ @apply absolute z-1 left-0.5 -top-0.5 m-0 opacity-100 w-10 h-10;
9
+ }
10
+ .util-checkboxes__input__after {
11
+ @apply absolute border-b-5 border-l-5;
12
+ width: 23px;
13
+ height: 12px;
14
+ transform: rotate(-45deg);
15
+ }
16
+ }
@@ -1,3 +1,5 @@
1
+ @import './checkboxes.common.css';
2
+
1
3
  .ds-checkboxes {
2
4
  &.ds-checkboxes--dense,
3
5
  .ds-dense & {
@@ -34,7 +36,7 @@
34
36
  }
35
37
  }
36
38
  .ds-checkboxes__item {
37
- @apply block relative mb-4 pl-12 min-h-10;
39
+ @apply util-checkboxes__item block pl-12;
38
40
  &:last-child {
39
41
  @apply mb-0;
40
42
  }
@@ -43,8 +45,7 @@
43
45
  @apply inline-block py-1 px-2 cursor-pointer;
44
46
  }
45
47
  .ds-checkboxes__input {
46
- @apply absolute z-1 left-0.5 -top-0.5 m-0 opacity-100
47
- w-10 h-10 cursor-pointer;
48
+ @apply util-checkboxes__input cursor-pointer;
48
49
  &::before {
49
50
  @apply absolute top-0 left-0 w-10 h-10
50
51
  border-solid border-base-content border-2 bg-base-100 opacity-100;
@@ -52,14 +53,11 @@
52
53
  box-sizing: border-box;
53
54
  }
54
55
  &::after {
55
- @apply absolute bg-transparent opacity-0 box-border
56
- border-accent border-b-5 border-l-5 border-t-0 border-r-0;
56
+ @apply util-checkboxes__input__after bg-transparent opacity-0 box-border
57
+ border-accent border-t-0 border-r-0;
57
58
  content: '';
58
59
  top: 11px;
59
60
  left: 9px;
60
- width: 23px;
61
- height: 12px;
62
- transform: rotate(-45deg);
63
61
  }
64
62
  &:checked {
65
63
  &::after {
@@ -0,0 +1,28 @@
1
+ @import './checkboxes.common.css';
2
+
3
+ .ds-checkboxes__item {
4
+ @apply util-checkboxes__item;
5
+ }
6
+ .ds-checkboxes__label {
7
+ @apply pl-12;
8
+ }
9
+ .ds-checkboxes__input {
10
+ @apply util-checkboxes__input top-0 left-0 border-solid border-base-content border-2 bg-base-100;
11
+ }
12
+
13
+
14
+ .ds-checkboxes__input--checked {
15
+ @apply util-checkboxes__input__after text-black;
16
+ top: 8;
17
+ left: 5;
18
+ }
19
+
20
+ .ds-checkboxes__input__wrapper--focus {
21
+ border-width: 4px;
22
+ border-color: var(--color-focus);
23
+ }
24
+ .ds-checkboxes__label__text {
25
+ font-size: var(--label-font-size);
26
+ line-height: 2rem;
27
+ letter-spacing: 0rem;
28
+ }
@@ -25,8 +25,7 @@
25
25
  @apply text-sm sm:text-base;
26
26
  }
27
27
  .ds-code--line-number {
28
- @apply inline-block text-right pointer-events-none select-none pr-0.5 w-6;
29
- color: var(--color-gray-500);
28
+ @apply inline-block text-right pointer-events-none select-none pr-0.5 w-6 text-base-500;
30
29
  }
31
30
  .ds-code--highlighted-line {
32
31
  background-color: rgba(var(--color-orange-100-rgb), 0.3);
@@ -77,7 +76,7 @@
77
76
  .ds-code--code,
78
77
  .ds-code--formula {
79
78
  /* prettylights-syntax-comment */
80
- color: var(--color-gray-600);
79
+ @apply text-base-600;
81
80
  }
82
81
  .ds-code--name,
83
82
  .ds-code--quote,
@@ -89,7 +88,7 @@
89
88
  }
90
89
  .ds-code--subst {
91
90
  /* prettylights-syntax-storage-modifier-import */
92
- color: var(--color-gray-900);
91
+ @apply text-base-900;
93
92
  }
94
93
  .ds-code--section {
95
94
  /* prettylights-syntax-markup-heading */
@@ -102,13 +101,11 @@
102
101
  }
103
102
  .ds-code--emphasis {
104
103
  /* prettylights-syntax-markup-italic */
105
- @apply italic;
106
- color: var(--color-gray-900);
104
+ @apply italic text-base-900;
107
105
  }
108
106
  .ds-code--strong {
109
107
  /* prettylights-syntax-markup-bold */
110
- @apply font-bold;
111
- color: var(--color-gray-900);
108
+ @apply font-bold text-base-900;
112
109
  }
113
110
  .ds-code--addition {
114
111
  /* prettylights-syntax-markup-inserted */
@@ -0,0 +1,28 @@
1
+ /* stylelint-disable digigov/enforce-class-selector-namespace */
2
+
3
+ .ds-copy-to-clipboard {
4
+ @apply flex z-10;
5
+ }
6
+ .ds-copy-to-clipboard--hidden {
7
+ @apply hidden w-0 h-0;
8
+ }
9
+ .ds-copy-to-clipboard__before {
10
+ /* stylelint-disable-next-line plugin/no-react-native-incompatible-css */
11
+ @apply w-4 h-4 border-t-8 border-l-8 border-success transform rotate-45
12
+ absolute bottom-1;
13
+ left: 50%;
14
+ }
15
+ .ds-copy-to-clipboard__message {
16
+ @apply bg-success w-full mb-4
17
+ absolute -top-4;
18
+ }
19
+ .ds-copy-to-clipboard__message__text {
20
+ @apply p-2 flex-1 text-center text-white py-3 px-4;
21
+ }
22
+ .ds-copy-to-clipboard__tooltip {
23
+ }
24
+ .ds-copy-to-clipboard__banner {
25
+ }
26
+ .ds-copy-to-clipboard__message--dense {
27
+ @apply py-2 px-4;
28
+ }
@@ -0,0 +1,26 @@
1
+ @tailwind utilities;
2
+
3
+ @layer utilities {
4
+ .util-details {
5
+ @apply md:mb-8 mb-4;
6
+ }
7
+ .util-details-text {
8
+ @apply md:text-lg;
9
+ font-size: var(--details-font-size);
10
+ line-height: var(--details-line-height);
11
+ }
12
+ .util-details__summary {
13
+ @apply mb-0;
14
+ }
15
+ .util-details__summary-text {
16
+ @apply underline;
17
+ }
18
+ .util-details__summary--lg-text {
19
+ @apply font-semibold;
20
+ font-size: var(--details__summary--lg-font-size);
21
+ line-height: var(--details__summary--lg-line-height);
22
+ }
23
+ .util-details__content {
24
+ @apply border-l-2 border-base-500 py-2 px-4 mt-4;
25
+ }
26
+ }
@@ -1,11 +1,10 @@
1
+ @import './details.common.css';
2
+
1
3
  .ds-details {
2
- @apply md:text-lg;
3
- @apply md:mb-8 mb-4;
4
- font-size: var(--details-font-size);
5
- line-height: var(--details-line-height);
4
+ @apply util-details util-details-text;
6
5
  }
7
6
  .ds-details__summary {
8
- @apply mb-0 underline cursor-pointer w-fit;
7
+ @apply util-details__summary util-details__summary-text cursor-pointer w-fit;
9
8
  &:hover {
10
9
  text-decoration-thickness: 2px;
11
10
  }
@@ -20,13 +19,11 @@
20
19
  @apply outline-none;
21
20
  }
22
21
  &.ds-details__summary--lg {
23
- @apply font-semibold;
24
- font-size: var(--details__summary--lg-font-size);
25
- line-height: var(--details__summary--lg-line-height);
22
+ @apply util-details__summary--lg-text;
26
23
  }
27
24
  }
28
25
  .ds-details__content {
29
- @apply border-l-2 border-base-500 py-2 px-4 mt-4;
26
+ @apply util-details__content;
30
27
  > *:last-child {
31
28
  @apply mb-0;
32
29
  }
@@ -0,0 +1,26 @@
1
+ @import './details.common.css';
2
+
3
+ .ds-details {
4
+ @apply util-details;
5
+ }
6
+ .ds-details__text {
7
+ @apply util-details-text;
8
+ }
9
+ .ds-details__summary {
10
+ @apply util-details__summary;
11
+ }
12
+ .ds-details__summary--focus {
13
+ background-color: var(--color-focus);
14
+ box-shadow:
15
+ 0 -2px var(--color-focus),
16
+ 0 4px var(--color-base-content);
17
+ }
18
+ .ds-details__summary__text {
19
+ @apply util-details__summary-text;
20
+ }
21
+ .ds-details__summary--lg__text {
22
+ @apply util-details__summary--lg-text;
23
+ }
24
+ .ds-details__content {
25
+ @apply util-details__content;
26
+ }
@@ -0,0 +1,23 @@
1
+ @tailwind utilities;
2
+
3
+ @layer utilities {
4
+ .util-dropdown {
5
+ @apply relative;
6
+ }
7
+ .util-dropdown--right {
8
+ @apply right-0 mr-0 ml-4;
9
+ }
10
+ .util-dropdown__content {
11
+ @apply border-base-400 bg-base-100
12
+ max-w-xs min-w-full absolute transition z-3 mr-4 -mt-4;
13
+ box-shadow:
14
+ 0 2px 8px rgba(var(--color-base-900-rgb), 0.3),
15
+ 0 -2px 0 var(--color-base-500);
16
+ }
17
+ .util-dropdown__content--full-width {
18
+ @apply min-w-full;
19
+ }
20
+ .util-dropdown__content--scrollable {
21
+ @apply max-h-64 md:max-h-96;
22
+ }
23
+ }
@@ -1,5 +1,7 @@
1
+ @import './dropdown.common.css';
2
+
1
3
  .ds-dropdown {
2
- @apply w-fit relative;
4
+ @apply util-dropdown w-fit;
3
5
  &.ds-dropdown--up {
4
6
  .ds-dropdown__content {
5
7
  @apply mb-4 border border-b-0 bottom-full;
@@ -13,7 +15,7 @@
13
15
  }
14
16
  &.ds-dropdown--right {
15
17
  .ds-dropdown__content {
16
- @apply right-0 mr-0 ml-4;
18
+ @apply util-dropdown--right;
17
19
  }
18
20
  }
19
21
  &.ds-dropdown--disabled {
@@ -47,19 +49,15 @@
47
49
  @apply mt-4;
48
50
  }
49
51
  .ds-dropdown__content {
50
- @apply border border-base-400 p-4 bg-base-100 border-t-0
51
- max-w-xs w-max min-w-full absolute transition z-3 mr-4 -mt-4;
52
+ @apply util-dropdown__content border p-4 border-t-0 w-max;
52
53
  -webkit-box-box-shadow:
53
54
  0 2px 8px rgba(var(--color-base-900-rgb), 0.3),
54
55
  0 -2px 0 var(--color-base-500);
55
- box-shadow:
56
- 0 2px 8px rgba(var(--color-base-900-rgb), 0.3),
57
- 0 -2px 0 var(--color-base-500);
58
56
  &.ds-dropdown__content--full-width {
59
- @apply min-w-full;
57
+ @apply util-dropdown__content--full-width;
60
58
  }
61
59
  &.ds-dropdown__content--scrollable {
62
- @apply overflow-y-auto max-h-64 md:max-h-96;
60
+ @apply overflow-y-auto util-dropdown__content--scrollable;
63
61
  }
64
62
  *:last-child {
65
63
  @apply mb-0;
@@ -0,0 +1,28 @@
1
+ @import './dropdown.common.css';
2
+
3
+ .ds-dropdown {
4
+ @apply util-dropdown;
5
+ z-index: 2;
6
+ }
7
+ .ds-dropdown--right {
8
+ @apply util-dropdown--right;
9
+ }
10
+
11
+ .ds-dropdown__button {
12
+ @apply gap-1 items-center p-2;
13
+ flex-direction: row;
14
+ flex-wrap: wrap;
15
+ }
16
+ .ds-dropdown__button__text {
17
+ color: var(--color-base-100);
18
+ }
19
+
20
+ .ds-dropdown__content {
21
+ @apply util-dropdown__content p-2 border-2;
22
+ }
23
+ .ds-dropdown__content--full-width {
24
+ @apply util-dropdown__content--full-width;
25
+ }
26
+ .ds-dropdown__content--scrollable {
27
+ @apply util-dropdown__content--scrollable;
28
+ }
@@ -0,0 +1,82 @@
1
+ @tailwind utilities;
2
+
3
+ @layer utilities {
4
+ .util-field {
5
+ @apply mb-8 md:mb-10;
6
+ }
7
+ .util-field--error {
8
+ @apply border-l-5 border-error-text px-0 pl-4;
9
+ }
10
+
11
+ .util-fieldset__legend {
12
+ margin-bottom: var(--fieldset__legend-margin-bottom);
13
+ }
14
+ .util-fieldset__legend-text {
15
+ font-weight: var(--fieldset__legend-font-weight);
16
+ letter-spacing: var(--fieldset__legend-letter-spacing);
17
+ }
18
+ .util-fieldset__legend--xl-text {
19
+ @apply max-w-2xl;
20
+ font-size: var(--fieldset__legend--xl-font-size);
21
+ line-height: var(--fieldset__legend--xl-line-height);
22
+ }
23
+ .util-fieldset__legend--lg-text {
24
+ font-size: var(--fieldset__legend--lg-font-size);
25
+ line-height: var(--fieldset__legend--lg-line-height);
26
+ }
27
+ .util-fieldset__legend--md-text {
28
+ font-size: var(--fieldset__legend--md-font-size);
29
+ line-height: var(--fieldset__legend--md-line-height);
30
+ }
31
+ .util-fieldset__legend--sm-text {
32
+ font-size: var(--fieldset__legend--sm-font-size);
33
+ line-height: var(--fieldset__legend--sm-line-height);
34
+ }
35
+
36
+
37
+ .util-label {
38
+ @apply mb-0 flex gap-y-3 flex-col;
39
+ }
40
+ .util-label-text {
41
+ font-size: var(--label-font-size);
42
+ line-height: var(--label-line-height);
43
+ letter-spacing: var(--label-letter-spacing);
44
+ }
45
+ .util-label__title--xl-text {
46
+ @apply max-w-2xl;
47
+ font-size: var(--label__title--xl-font-size);
48
+ line-height: var(--label__title--xl-line-height);
49
+ font-weight: var(--label__title-font-weight);
50
+ letter-spacing: var(--label__title-letter-spacing);
51
+ }
52
+ .util-label__title--lg-text {
53
+ font-size: var(--label__title--lg-font-size);
54
+ line-height: var(--label__title--lg-line-height);
55
+ font-weight: var(--label__title-font-weight);
56
+ letter-spacing: var(--label__title-letter-spacing);
57
+ }
58
+ .util-label__title--md-text {
59
+ font-size: var(--label__title--md-font-size);
60
+ line-height: var(--label__title--md-line-height);
61
+ font-weight: var(--label__title-font-weight);
62
+ letter-spacing: var(--label__title-letter-spacing);
63
+ }
64
+ .util-label__title--sm-text {
65
+ font-size: var(--label__title--sm-font-size);
66
+ line-height: var(--label__title--sm-line-height);
67
+ font-weight: var(--label__title-font-weight);
68
+ letter-spacing: var(--label__title-letter-spacing);
69
+ }
70
+
71
+ .util-input {
72
+ @apply md:text-lg w-full p-2 border-2 border-base-content bg-base-100;
73
+ border-radius: var(--input-border-radius);
74
+ }
75
+ .util-input--error {
76
+ @apply border-error-text border-3;
77
+ }
78
+ .util-textarea {
79
+ @apply md:text-lg w-full p-2 border-2 border-base-content bg-base-100;
80
+ border-radius: var(--textarea-border-radius);
81
+ }
82
+ }
@@ -1,3 +1,5 @@
1
+ @import './form.common.css';
2
+
1
3
  .ds-form {
2
4
  }
3
5
  .ds-field {
@@ -22,14 +24,37 @@
22
24
  }
23
25
  }
24
26
  .ds-fieldset__legend {
25
- @apply mb-4 !important;
27
+ @apply util-fieldset__legend util-fieldset__legend-text;
28
+ }
29
+ .ds-fieldset__legend--xl {
30
+ @apply util-fieldset__legend--xl-text;
31
+ }
32
+ .ds-fieldset__legend--lg {
33
+ @apply util-fieldset__legend--lg-text;
26
34
  }
35
+ .ds-fieldset__legend--md {
36
+ @apply util-fieldset__legend--md-text;
37
+ }
38
+ .ds-fieldset__legend--sm {
39
+ @apply util-fieldset__legend--sm-text;
40
+ }
41
+
27
42
  .ds-label {
28
- @apply mb-0 flex gap-y-3 flex-col;
29
- font-size: var(--label-font-size);
30
- line-height: var(--label-line-height);
31
- letter-spacing: var(--label-letter-spacing);
43
+ @apply util-label util-label-text gap-y-3;
32
44
  }
45
+ .ds-label__title--xl {
46
+ @apply util-label__title--xl-text;
47
+ }
48
+ .ds-label__title--lg {
49
+ @apply util-label__title--lg-text;
50
+ }
51
+ .ds-label__title--md {
52
+ @apply util-label__title--md-text;
53
+ }
54
+ .ds-label__title--sm {
55
+ @apply util-label__title--sm-text;
56
+ }
57
+
33
58
  .ds-input {
34
59
  border-radius: var(--input-border-radius);
35
60
  &.ds-input--width-20-char {