@digigov/css 1.0.0-002c630d → 1.0.0-290a96e2

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 (57) hide show
  1. package/defaultTheme/footer.json +5 -5
  2. package/defaultTheme/typography.json +22 -2
  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 +4 -4
  10. package/src/components/accessibility-menu.css +8 -3
  11. package/src/components/accordion.css +67 -13
  12. package/src/components/admin-header.css +27 -1
  13. package/src/components/admin-layout.css +6 -0
  14. package/src/components/autocomplete.css +12 -9
  15. package/src/components/bottom-info.css +2 -1
  16. package/src/components/button.css +75 -31
  17. package/src/components/card.css +17 -14
  18. package/src/components/checkboxes.css +10 -2
  19. package/src/components/chip.css +35 -15
  20. package/src/components/copy-to-clipboard.css +45 -31
  21. package/src/components/drawer.css +17 -26
  22. package/src/components/dropdown.css +52 -52
  23. package/src/components/filter.css +71 -63
  24. package/src/components/footer.css +28 -23
  25. package/src/components/form.css +52 -47
  26. package/src/components/header.css +87 -31
  27. package/src/components/hidden.css +3 -0
  28. package/src/components/index.css +3 -0
  29. package/src/components/kitchensink.css +2 -2
  30. package/src/components/layout.css +21 -22
  31. package/src/components/loader.css +11 -22
  32. package/src/components/masthead.css +78 -0
  33. package/src/components/misc.css +9 -41
  34. package/src/components/modal.css +5 -3
  35. package/src/components/nav.css +67 -125
  36. package/src/components/notification-banner.css +20 -9
  37. package/src/components/pagination.css +38 -24
  38. package/src/components/panel.css +4 -4
  39. package/src/components/phase-banner.css +1 -7
  40. package/src/components/radios.css +14 -24
  41. package/src/components/stack.css +66 -0
  42. package/src/components/stepnav.css +23 -10
  43. package/src/components/summary-list.css +22 -15
  44. package/src/components/svg-icons.css +0 -59
  45. package/src/components/table.css +43 -47
  46. package/src/components/task-list.css +20 -15
  47. package/src/components/timeline.css +8 -1
  48. package/src/components/typography.css +77 -66
  49. package/src/components/warning-text.css +19 -0
  50. package/src/pages/admin-filtering-data.js +1 -1
  51. package/src/pages/dropdown.js +2 -2
  52. package/src/pages/form.js +1 -1
  53. package/src/pages/index.js +12 -10
  54. package/src/utilities/index.css +141 -21
  55. package/src/utilities/utilities.css +148 -24
  56. package/tailwind.config.js +2 -0
  57. package/themes.plugin.js +16 -16
@@ -1,20 +1,4 @@
1
- .govgr-form {
2
- .govgr-body {
3
- @apply mb-4;
4
- }
5
- &.govgr-grid {
6
- @apply grid gap-4;
7
- .govgr-fieldset {
8
- @apply grid gap-4;
9
- :not(.govgr-field) {
10
- @apply col-span-12;
11
- }
12
- }
13
- :not(.govgr-field) {
14
- @apply col-span-12;
15
- }
16
- }
17
- }
1
+ .govgr-form {}
18
2
  .govgr-field {
19
3
  @apply mb-8 md:mb-10;
20
4
  .govgr-fieldset {
@@ -40,14 +24,6 @@
40
24
  font-size: var(--label-font-size);
41
25
  line-height: var(--label-line-height);
42
26
  letter-spacing: var(--label-letter-spacing);
43
- .govgr-heading-sm,
44
- .govgr-heading-md,
45
- .govgr-heading-lg,
46
- .govgr-heading-xl,
47
- .govgr-hint,
48
- .govgr-error-message {
49
- @apply mb-0;
50
- }
51
27
  }
52
28
  .govgr-input,
53
29
  .govgr-select,
@@ -69,41 +45,38 @@
69
45
  }
70
46
  .govgr-uploaded-file {
71
47
  @apply flex flex-wrap gap-x-4 mb-0;
72
- .govgr-link {
73
- @apply h-fit text-lg;
74
- }
75
48
  }
76
49
  .govgr-date-input,
77
- .govgr-single-character-input--container {
78
- @apply flex;
50
+ .govgr-single-character-input {
51
+ @apply flex flex-wrap gap-y-2;
79
52
  }
80
53
  .govgr-select {
81
54
  @apply w-auto max-w-full;
82
55
  }
83
- .govgr-input--width-20 {
56
+ .govgr-select__option {}
57
+ .govgr-input--width-20-char {
84
58
  max-width: 41ex;
85
59
  }
86
- .govgr-input--width-10 {
60
+ .govgr-input--width-10-char {
87
61
  max-width: 23ex;
88
62
  }
89
- .govgr-input--width-5 {
63
+ .govgr-input--width-5-char {
90
64
  max-width: 10.8ex;
91
65
  }
92
- .govgr-input--width-4 {
66
+ .govgr-input--width-4-char {
93
67
  max-width: 9ex;
94
68
  }
95
- .govgr-input--width-3 {
69
+ .govgr-input--width-3-char {
96
70
  max-width: 7.2ex;
97
71
  }
98
- .govgr-input--width-2 {
72
+ .govgr-input--width-2-char {
99
73
  max-width: 5.4ex;
100
74
  }
101
- .govgr-otp-input--width {
102
- max-width: 3.1ex;
103
- @apply text-center pl-0 pr-0;
75
+ .govgr-single-character-input__item {
76
+ max-width: 4.4ex;
77
+ @apply text-center px-0 mr-3;
104
78
  }
105
- .govgr-date-input__item,
106
- .govgr-otp-input__item {
79
+ .govgr-date-input__item {
107
80
  @apply mr-4;
108
81
  }
109
82
  .govgr-\!-width-one-quarter,
@@ -137,9 +110,6 @@
137
110
 
138
111
  /* error handling */
139
112
 
140
- .govgr-error-summary {
141
- @apply border-5 border-error mb-6 md:mb-8 p-4 md:p-5;
142
- }
143
113
  .govgr-field--error {
144
114
  @apply border-l-5 border-error px-0 pl-4;
145
115
  }
@@ -179,11 +149,46 @@
179
149
  .govgr-radios__input:disabled:checked:after {
180
150
  @apply opacity-40;
181
151
  }
182
-
183
152
  .govgr-radios__label--disabled,
184
153
  .govgr-checkboxes__label--disabled {
185
154
  @apply opacity-40;
186
155
  }
187
- .govgr-choice-divider {
188
- @apply text-lg text-center w-10 mb-4;
156
+ .govgr-choice-divider-text {
157
+ @apply text-lg text-center min-w-10 w-max mb-4;
158
+ }
159
+
160
+ /* overrides */
161
+
162
+ .govgr-form {
163
+ .govgr-body {
164
+ @apply mb-4;
165
+ }
166
+ &.govgr-grid {
167
+ @apply grid gap-4;
168
+ .govgr-fieldset {
169
+ @apply grid gap-4;
170
+ :not(.govgr-field) {
171
+ @apply col-span-12;
172
+ }
173
+ }
174
+ :not(.govgr-field) {
175
+ @apply col-span-12;
176
+ }
177
+ }
178
+ }
179
+ .govgr-label {
180
+ .govgr-heading-xs,
181
+ .govgr-heading-sm,
182
+ .govgr-heading-md,
183
+ .govgr-heading-lg,
184
+ .govgr-heading-xl,
185
+ .govgr-hint,
186
+ .govgr-error-message {
187
+ @apply mb-0;
188
+ }
189
+ }
190
+ .govgr-uploaded-file {
191
+ .govgr-link {
192
+ @apply h-fit text-lg;
193
+ }
189
194
  }
@@ -1,21 +1,17 @@
1
1
  .govgr-header {
2
- @apply bg-primary border-b-8 print:border-b-2 border-tertiary;
3
- @apply print:bg-white;
2
+ @apply relative bg-primary border-b-8 print:border-b-2 border-tertiary print:bg-white;
4
3
  border-bottom-style: solid;
5
- .govgr-svg-icon--burger {
6
- fill: var(--color-base-content);
7
- @apply float-right cursor-pointer;
8
- }
9
4
  }
10
- .govgr-header__container {
5
+ .govgr-header__content {
11
6
  @apply px-4 py-2 mx-auto max-w-5xl w-full flex justify-between items-center
12
7
  print:px-0 gap-3;
13
8
  }
14
- .govgr-header__content {
9
+ .govgr-header__section {
15
10
  @apply flex justify-start flex-wrap items-center gap-x-4 gap-y-2
16
11
  print:gap-1;
17
12
  }
18
13
  .govgr-header__logo {
14
+ print-color-adjust: exact !important;
19
15
  -webkit-print-color-adjust: exact !important;
20
16
  @apply h-12 print:hidden;
21
17
  }
@@ -48,34 +44,94 @@
48
44
  .govgr-header-nav-menu__content {
49
45
  @apply flex justify-start items-center gap-x-4 gap-y-2 print:gap-1;
50
46
  }
51
- .govgr-masthead {
52
- @apply print:border-2 print:bg-white print:border-tertiary-300 print:text-base-content;
53
- .govgr-grid-column-two-thirds > *:last-child {
54
- @apply mb-0;
47
+
48
+ /* overrides */
49
+
50
+ .govgr-header {
51
+ .govgr-header__content,
52
+ .govgr-header__section {
53
+ > .govgr-link {
54
+ @apply text-white focus:text-link-active print:text-base-content;
55
+ }
55
56
  }
56
- .govgr-header__container {
57
- @apply flex-wrap;
57
+ .govgr-dropdown {
58
+ @apply print:hidden;
58
59
  }
59
- }
60
- .govgr-masthead--primary {
61
- @apply bg-tertiary text-white;
62
- .govgr-masthead__body {
63
- @apply text-white;
60
+ .govgr-dropdown__button {
61
+ @apply sm:w-max;
64
62
  }
65
- .govgr-body {
66
- @apply text-white;
63
+ .govgr-dropdown__button.govgr-link {
64
+ @apply text-lg text-white focus:text-base-content print:text-base-800;
67
65
  }
68
- }
69
- .govgr-masthead--secondary {
70
- @apply border-b border-base-400 !important;
71
- @apply bg-base-200;
72
- .govgr-masthead__body {
73
- @apply text-base-content;
66
+ .govgr-link {
67
+ .govgr-svg-icon {
68
+ fill: var(--color-white);
69
+ }
70
+ &:hover {
71
+ .govgr-svg-icon {
72
+ fill: var(--color-white);
73
+ }
74
+ }
75
+ &:focus {
76
+ .govgr-svg-icon {
77
+ fill: var(--color-link-active);
78
+ }
79
+ }
80
+ }
81
+ .govgr-phase-banner__text {
82
+ @apply text-white print:text-base-content;
83
+ }
84
+ .govgr-link {
85
+ .govgr-svg-icon {
86
+ fill: var(--color-white);
87
+ }
88
+ &:hover {
89
+ .govgr-svg-icon {
90
+ fill: var(--color-white);
91
+ }
92
+ }
93
+ &:focus {
94
+ .govgr-svg-icon {
95
+ fill: var(--color-link-active);
96
+ }
97
+ }
74
98
  }
75
99
  }
76
- .govgr-masthead__body {
77
- @apply md:mb-10 mb-6 md:text-lg text-base leading-7 print:text-base-content;
100
+ .govgr-header__section {
101
+ .govgr-phase-banner {
102
+ @apply mb-0;
103
+ }
78
104
  }
79
- .govgr-masthead__logo {
80
- @apply md:mb-6 mb-4 h-10;
105
+ .govgr-header-nav-menu__content,
106
+ .govgr-header__content,
107
+ .govgr-header__section {
108
+ > .govgr-svg-icon--burger {
109
+ fill: var(--color-white);
110
+ @apply float-right focus:bg-focus;
111
+ }
112
+ > .govgr-close-btn {
113
+ @apply sm:hidden;
114
+ .govgr-svg-icon--close {
115
+ fill: var(--color-link) !important;
116
+ }
117
+ }
118
+ > .govgr-nav__list {
119
+ > .govgr-nav__list-item {
120
+ > .govgr-nav__list-item-link,
121
+ > .govgr-nav__list-item-btn {
122
+ &:not(:focus) {
123
+ @apply text-white;
124
+ }
125
+ }
126
+ > .govgr-nav__list-item-link--active,
127
+ > .govgr-nav__list-item-btn--active {
128
+ &:not(:focus) {
129
+ @apply text-white !important;
130
+ }
131
+ .govgr-svg-icon {
132
+ fill: var(--color-white);
133
+ }
134
+ }
135
+ }
136
+ }
81
137
  }
@@ -1,3 +1,6 @@
1
+ .govgr-hidden {
2
+ @apply hidden;
3
+ }
1
4
  .govgr-hidden-xs--up {
2
5
  @apply xs:hidden;
3
6
  }
@@ -22,9 +22,11 @@
22
22
  @import "./card.css";
23
23
  @import "./details.css";
24
24
  @import "./notification-banner.css";
25
+ @import "./masthead.css";
25
26
  @import "./panel.css";
26
27
  @import "./phase-banner.css";
27
28
  @import "./summary-list.css";
29
+ @import "./stack.css";
28
30
  @import "./tabs.css";
29
31
  @import "./misc.css";
30
32
  @import "./modal.css";
@@ -42,3 +44,4 @@
42
44
  @import "./dev-theme.css";
43
45
  @import "./kitchensink.css";
44
46
  @import "./hidden.css";
47
+ @import "./warning-text.css";
@@ -46,7 +46,7 @@
46
46
  .govgr-kitchensink-card .govgr-table__cell .govgr-dropdown {
47
47
  margin: 0 !important;
48
48
  }
49
- .govgr-kitchensink-card .govgr-layout-wrapper__full-height {
49
+ .govgr-kitchensink-card .govgr-layout--full-height {
50
50
  min-height: inherit;
51
51
  }
52
52
  @container (min-width: 400px) {
@@ -58,7 +58,7 @@
58
58
  .govgr-kitchensink-card .govgr-drawer--closed {
59
59
  @apply hidden;
60
60
  }
61
- .govgr-kitchensink-card .govgr-drawer__close-icon {
61
+ .govgr-kitchensink-card .govgr-close-btn {
62
62
  @apply block;
63
63
  }
64
64
  }
@@ -1,28 +1,17 @@
1
- .govgr-layout-wrapper {
1
+ .govgr-layout {
2
2
  display: flex;
3
3
  flex-direction: column;
4
4
  flex-wrap: wrap;
5
5
  }
6
- .govgr-layout-wrapper__full-height {
6
+ .govgr-layout--full-height {
7
7
  min-height: 100vh;
8
8
  }
9
- .govgr-width-container {
10
- @apply max-w-5xl box-border mx-auto px-3 md:px-6 w-full;
9
+ .govgr-container {
10
+ @apply max-w-5xl box-border mx-auto px-3 md:px-6 w-full;
11
11
  flex: 1 1 0%;
12
12
  }
13
- .govgr-full-width-container {
14
- @apply max-w-full box-border mx-auto px-3 md:px-6 w-full;
15
- flex: 1 1 0%;
16
- }
17
- .govgr-main-wrapper {
18
- @apply grid py-4 md:grid-cols-3 md:gap-12 grid-cols-1 gap-y-16
19
- print:gap-4 print:grid-cols-1;
20
- }
21
- .govgr-grid-column-two-thirds {
22
- @apply col-span-2;
23
- }
24
- .govgr-grid-column-one-third {
25
- @apply col-span-1;
13
+ .govgr-container--full-width {
14
+ @apply max-w-full;
26
15
  }
27
16
  .govgr-top {
28
17
  @apply mb-4;
@@ -35,9 +24,6 @@
35
24
  }
36
25
  .govgr-btn-group {
37
26
  @apply flex flex-wrap items-center gap-4 mb-6 print:items-baseline;
38
- .govgr-btn, .govgr-link {
39
- @apply mb-0;
40
- }
41
27
  }
42
28
  @media print {
43
29
  /* When govgr-btn-group is empty at print, content at :after limits its height. */
@@ -49,7 +35,7 @@
49
35
  @apply m-auto px-4 py-2 border-0 w-full bg-transparent;
50
36
  }
51
37
  .govgr-section-break--visible {
52
- @apply border-t border-base-300 border-solid ;
38
+ @apply border-t border-base-300 border-solid;
53
39
  }
54
40
  .govgr-section-break--md {
55
41
  @apply mb-5;
@@ -59,4 +45,17 @@
59
45
  }
60
46
  .govgr-section-break--xl {
61
47
  @apply mb-9;
62
- }
48
+ }
49
+
50
+ /* overrides */
51
+
52
+ .govgr-container {
53
+ &.govgr-grid {
54
+ @apply py-4 print:gap-4 print:grid-cols-1;
55
+ }
56
+ }
57
+ .govgr-btn-group {
58
+ .govgr-btn, .govgr-link {
59
+ @apply mb-0;
60
+ }
61
+ }
@@ -1,53 +1,42 @@
1
- .govgr-loader__container {
1
+ .govgr-loader {
2
2
  @apply h-fit w-fit m-auto overflow-hidden print:hidden;
3
3
  }
4
- .govgr-loader {
4
+ .govgr-circular-progress {
5
5
  animation: rotate 10s linear infinite;
6
6
  @apply w-fit h-10;
7
7
  }
8
- .govgr-loader__circle {
8
+ .govgr-circular-progress__circle {
9
9
  fill: none;
10
10
  stroke-miterlimit: 10;
11
11
  stroke-width: 42px;
12
12
  }
13
- .govgr-loader__circle--1 {
13
+ .govgr-circular-progress__circle--1 {
14
14
  stroke: var(--color-secondary);
15
15
  }
16
- .govgr-loader__circle--2 {
16
+ .govgr-circular-progress__circle--2 {
17
17
  --full-length: 470;
18
18
  stroke: var(--color-primary);
19
19
  stroke-dasharray: var(--full-length);
20
20
  stroke-dashoffset: 0;
21
21
  animation: dash 4s ease-in-out 0s forwards infinite;
22
22
  }
23
- .govgr-loader--inverse {
24
- .govgr-loader__circle--1 {
23
+ .govgr-circular-progress--secondary {
24
+ .govgr-circular_progress__circle--1 {
25
25
  @apply opacity-40;
26
26
  stroke: var(--color-white);
27
27
  }
28
28
 
29
- .govgr-loader__circle--2 {
29
+ .govgr-circular-progress__circle--2 {
30
30
  stroke: var(--color-white);
31
31
  }
32
32
  }
33
- @media print {
34
- .govgr-btn {
35
- .govgr-loader--inverse {
36
- .govgr-loader__circle--1,
37
- .govgr-loader__circle--2 {
38
- stroke: var(--color-base-content);
39
- }
40
- }
41
- }
42
- }
43
-
44
- .govgr-loader--sm {
33
+ .govgr-circular-progress--sm {
45
34
  @apply h-5 w-5;
46
35
  }
47
- .govgr-loader--md {
36
+ .govgr-circular-progress--md {
48
37
  @apply h-10 w-10;
49
38
  }
50
- .govgr-loader--lg {
39
+ .govgr-circular-progress--lg {
51
40
  @apply h-12 w-12;
52
41
  }
53
42
  @keyframes dash {
@@ -0,0 +1,78 @@
1
+ .govgr-masthead {
2
+ @apply print:border-2 print:bg-white print:border-tertiary-300 print:text-base-content;
3
+ }
4
+ .govgr-masthead--primary {
5
+ @apply bg-tertiary text-white;
6
+ .govgr-masthead__body {
7
+ @apply text-white;
8
+ }
9
+ }
10
+ .govgr-masthead--secondary {
11
+ @apply border-b border-base-400 !important;
12
+ @apply bg-base-200;
13
+ .govgr-masthead__body {
14
+ @apply text-base-content;
15
+ }
16
+ }
17
+ .govgr-masthead__body {
18
+ @apply md:mb-10 mb-6 md:text-lg text-base leading-7 print:text-base-content;
19
+ }
20
+ .govgr-masthead__logo {
21
+ @apply md:mb-6 mb-4 h-10;
22
+ }
23
+
24
+ /* overrides */
25
+
26
+ .govgr-masthead {
27
+ .govgr-main > *:last-child {
28
+ @apply mb-0;
29
+ }
30
+ .govgr-header__content {
31
+ @apply flex-wrap;
32
+ }
33
+ }
34
+ .govgr-masthead--primary {
35
+ .govgr-body {
36
+ @apply text-white;
37
+ }
38
+ .govgr-link {
39
+ @apply text-white hover:text-white focus:text-base-content print:text-base-content;
40
+ &:hover {
41
+ text-decoration-thickness: 2px;
42
+ }
43
+ }
44
+ .govgr-link--no-underline {
45
+ @apply no-underline hover:underline;
46
+ &:hover {
47
+ text-decoration-thickness: 2px;
48
+ }
49
+ }
50
+ .govgr-back-link {
51
+ @apply text-white print:text-base-content;
52
+ }
53
+ .govgr-phase-banner__text {
54
+ @apply text-white print:text-base-content;
55
+ }
56
+ }
57
+ .govgr-masthead--primary,
58
+ .govgr-background-dark {
59
+ .govgr-btn {
60
+ @apply border-white hover:border-white border-2 shadow-none;
61
+ &:focus {
62
+ -webkit-box-shadow: 0 0 0 4px var(--color-base-content), 0 0 0 8px var(--color-focus);
63
+ box-shadow: 0 0 0 4px var(--color-base-content), 0 0 0 8px var(--color-focus);
64
+ }
65
+ }
66
+ .govgr-btn-primary {
67
+ @apply print:border-0 print:border-b-2 print:border-success print:text-base-content print:bg-white print:shadow-none;
68
+ }
69
+ .govgr-btn-secondary {
70
+ @apply print:border-0 print:border-b-2 print:border-base-500 print:text-base-content print:bg-white print:shadow-none;
71
+ }
72
+ .govgr-btn-warning {
73
+ @apply print:border-0 print:border-b-2 print:border-error print:text-base-content print:bg-white print:shadow-none;
74
+ }
75
+ .govgr-hint {
76
+ @apply opacity-70 text-white print:text-base-content;
77
+ }
78
+ }
@@ -1,35 +1,3 @@
1
- .govgr-blockquote {
2
- @apply lg:mb-8 mb-4 mt-8 md:mb-8 p-4 border-l-8 border-base-500;
3
- }
4
-
5
- .govgr-warning-text {
6
- @apply p-4;
7
- }
8
- .govgr-warning-text {
9
- font-size: var(--warning-text-font-size);
10
- @apply flex pt-4 pb-4 pl-0 pr-0;
11
- .govgr-warning-text__icon {
12
- @apply text-base-content-invert font-bold bg-base-content text-3xl leading-10 text-center
13
- rounded-3xl md:min-h-10 min-w-10 h-fit mr-6 mt-1
14
- print:bg-white print:border-2 print:border-base-content print:text-base-content;
15
- }
16
- .govgr-warning-text__text {
17
- @apply flex items-center;
18
- }
19
- .govgr-warning-text__assistive {
20
- position: absolute !important;
21
- width: 1px !important;
22
- height: 1px !important;
23
- margin: 0 !important;
24
- padding: 0 !important;
25
- overflow: hidden !important;
26
- clip: rect(0 0 0 0) !important;
27
- -webkit-clip-path: inset(50%) !important;
28
- clip-path: inset(50%) !important;
29
- border: 0 !important;
30
- white-space: nowrap !important;
31
- }
32
- }
33
1
  .tooltip {
34
2
  @apply inline-block relative m-0 p-0 underline w-min cursor-pointer;
35
3
  text-decoration-style: dotted;
@@ -52,15 +20,15 @@
52
20
  }
53
21
  }
54
22
  }
55
- .govgr-visually-hidden {
56
- @apply absolute m-0 p-0 overflow-hidden border-0 whitespace-nowrap !important;
57
- width: 1px !important;
58
- height: 1px !important;
59
- clip: rect(0 0 0 0) !important;
60
- -webkit-clip-path: inset(50%) !important;
61
- clip-path: inset(50%) !important;
62
- }
63
-
64
23
  .govgr-cookie-banner {
65
24
  @apply bg-base-200;
66
25
  }
26
+
27
+ /* overrides */
28
+
29
+ div[class*="govgr-grid__col-span"] {
30
+ >.govgr-card {
31
+ @apply mb-0;
32
+ }
33
+ }
34
+
@@ -16,14 +16,16 @@
16
16
  .govgr-modal__container {
17
17
  @apply grid p-10 gap-6 px-6 py-2;
18
18
  }
19
- .govgr-modal__heading {
20
- @apply md:text-2xl text-xl font-bold;
21
- }
22
19
  .govgr-modal__content {
23
20
  @apply text-base lg:text-xl text-lg;
24
21
  }
25
22
  .govgr-modal__action {
26
23
  @apply flex flex-wrap items-center gap-4;
24
+ }
25
+
26
+ /* overrides */
27
+
28
+ .govgr-modal__action {
27
29
  .govgr-link,
28
30
  .govgr-btn {
29
31
  @apply mb-0;