@digigov/css 1.0.0-6b93ebf2 → 1.0.0-758a1807

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 (52) hide show
  1. package/defaultTheme/footer.json +1 -1
  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 +8 -3
  19. package/src/components/chip.css +35 -15
  20. package/src/components/copy-to-clipboard.css +16 -9
  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 +27 -22
  25. package/src/components/form.css +50 -42
  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 +17 -17
  31. package/src/components/loader.css +5 -16
  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 -126
  36. package/src/components/pagination.css +38 -24
  37. package/src/components/phase-banner.css +1 -7
  38. package/src/components/radios.css +12 -18
  39. package/src/components/stack.css +66 -0
  40. package/src/components/stepnav.css +23 -10
  41. package/src/components/summary-list.css +22 -15
  42. package/src/components/svg-icons.css +0 -59
  43. package/src/components/table.css +34 -40
  44. package/src/components/task-list.css +20 -15
  45. package/src/components/timeline.css +8 -1
  46. package/src/components/typography.css +77 -66
  47. package/src/components/warning-text.css +19 -0
  48. package/src/pages/admin-filtering-data.js +1 -1
  49. package/src/utilities/index.css +141 -21
  50. package/src/utilities/utilities.css +148 -24
  51. package/tailwind.config.js +2 -0
  52. package/themes.plugin.js +16 -16
@@ -26,12 +26,6 @@
26
26
  @apply w-full border-collapse table;
27
27
  @apply md:mb-10 mb-6 text-base-content md:text-lg text-base font-normal antialiased;
28
28
  border-spacing: 0;
29
- .govgr-dropdown__content {
30
- @apply mt-0;
31
- }
32
- .govgr-dropdown__button {
33
- @apply mb-0;
34
- }
35
29
  }
36
30
  .govgr-table-sort__icons-container {
37
31
  @apply flex flex-col;
@@ -76,14 +70,6 @@
76
70
  @apply pl-2;
77
71
  }
78
72
  }
79
- .govgr-table__cell {
80
- .govgr-btn {
81
- @apply mb-0;
82
- }
83
- .govgr-btn-group {
84
- @apply mb-0;
85
- }
86
- }
87
73
  .govgr-table--dark,
88
74
  .govgr-table--zebra {
89
75
  .govgr-table__header,
@@ -235,32 +221,6 @@
235
221
  .govgr-table__row {
236
222
  @apply bg-base-100;
237
223
  }
238
- .govgr-table__header {
239
- .govgr-dropdown__button {
240
- @apply no-underline font-bold text-base-content !important;
241
- }
242
- .govgr-dropdown__button--underline:not(:focus) {
243
- @apply underline !important;
244
- text-decoration-thickness: 2px !important;
245
- }
246
- .govgr-dropdown__content {
247
- @apply py-0;
248
- }
249
- .govgr-vertical-nav__item {
250
- @apply flex font-normal no-underline;
251
- }
252
- .govgr-vertical-nav__item--active:not(:focus) {
253
- @apply bg-base-200 font-normal !important;
254
- }
255
- }
256
- .govgr-table__cell {
257
- .govgr-btn {
258
- @apply mb-0;
259
- }
260
- .govgr-button-group {
261
- @apply mb-0;
262
- }
263
- }
264
224
  .govgr-table__header,
265
225
  .govgr-table__cell {
266
226
  @apply pr-5 py-2.5 pl-0 border-b border-solid border-base-300 text-left align-middle;
@@ -300,3 +260,37 @@
300
260
  backdrop-filter: blur(0.6px);
301
261
  }
302
262
  }
263
+
264
+ /* overrides */
265
+
266
+ .govgr-table {
267
+ .govgr-dropdown__content {
268
+ @apply mt-0;
269
+ }
270
+ .govgr-dropdown__button {
271
+ @apply mb-0;
272
+ }
273
+ }
274
+ .govgr-table__cell {
275
+ .govgr-btn {
276
+ @apply mb-0;
277
+ }
278
+ .govgr-btn-group {
279
+ @apply mb-0;
280
+ }
281
+ }
282
+ .govgr-table__header {
283
+ .govgr-dropdown__content {
284
+ @apply py-0;
285
+ }
286
+ .govgr-dropdown__button:not(:focus) {
287
+ @apply no-underline font-bold text-base-content !important;
288
+ }
289
+ .govgr-dropdown__button--underline:not(:focus) {
290
+ @apply underline !important;
291
+ text-decoration-thickness: 2px !important;
292
+ }
293
+ .govgr-nav__list-item-link, .govgr-nav__list-item-btn {
294
+ @apply flex no-underline;
295
+ }
296
+ }
@@ -15,14 +15,32 @@
15
15
  }
16
16
  .govgr-task-list__content {
17
17
  @apply mb-4;
18
+ }
19
+ .govgr-task-list__content__tag {
20
+ @apply px-2 py-1 mr-2 inline-block font-sans text-sm uppercase tracking-widest print:border-2 print:bg-white print:mr-4;
21
+ }
22
+ .govgr-task-list__content__tag--info {
23
+ @apply bg-info text-white print:border-info-hover print:text-info-hover;
24
+ }
25
+ .govgr-task-list__content__tag--primary {
26
+ @apply bg-secondary text-base-content print:border-info print:text-info;
27
+ }
28
+ .govgr-task-list__content__tag--secondary {
29
+ @apply bg-base-300 print:border-base-800 print:text-base-800;
30
+ }
31
+
32
+ /* overrides */
33
+
34
+ .govgr-task-list__content {
18
35
  .govgr-body {
19
36
  @apply mb-2 md:mb-3;
20
37
  }
21
38
  .govgr-summary-list__row:first-child {
22
- & > dt {
39
+ & > .govgr-summary-list__key {
23
40
  @apply border-t-2 border-base-400;
24
41
  }
25
- & > dd {
42
+ & > .govgr-summary-list__value,
43
+ & > .govgr-summary-list__actions {
26
44
  @apply sm:border-t-2 sm:border-base-400;
27
45
  }
28
46
  }
@@ -30,16 +48,3 @@
30
48
  @apply font-normal sm:mb-0 mb-2 pt-2;
31
49
  }
32
50
  }
33
- .govgr-task-list__content__tag {
34
- @apply px-2 py-1 mr-2 inline-block font-sans text-sm uppercase tracking-widest;
35
- }
36
- .govgr-task-list__content__tag--primary {
37
- @apply bg-info text-white print:border-2 print:bg-white print:border-info-hover print:text-info-hover print:mr-4;
38
- }
39
- .govgr-task-list__content__tag--secondary {
40
- @apply bg-secondary text-base-content print:border-2 print:bg-white print:border-info print:text-info print:mr-4;
41
- }
42
- .govgr-task-list__content__tag--gray {
43
- @apply bg-base-300 print:border-2 print:bg-white print:border-base-800 print:text-base-800 print:mr-4;
44
- }
45
- .govgr-tag {}
@@ -31,13 +31,20 @@
31
31
  }
32
32
  .govgr-timeline__content {
33
33
  @apply mb-4;
34
+ }
35
+ .govgr-timeline__actions {
36
+ @apply flex flex-wrap items-center gap-4 mb-6;
37
+ }
38
+
39
+ /* overrides */
40
+
41
+ .govgr-timeline__content {
34
42
  .govgr-hint,
35
43
  .govgr-body {
36
44
  @apply mb-2 md:mb-3;
37
45
  }
38
46
  }
39
47
  .govgr-timeline__actions {
40
- @apply flex flex-wrap items-center gap-4 mb-6;
41
48
  .govgr-btn,
42
49
  .govgr-link {
43
50
  @apply mb-0;
@@ -1,35 +1,43 @@
1
1
  .govgr-heading-xl {
2
2
  @apply mx-0 max-w-2xl;
3
3
  font-size: var(--heading-xl-font-size);
4
- line-height:var(--heading-xl-line-height);
5
- margin-bottom:var(--heading-xl-margin-bottom);
4
+ line-height: var(--heading-xl-line-height);
5
+ margin-bottom: var(--heading-xl-margin-bottom);
6
6
  font-weight: var(--heading-xl-font-weight);
7
7
  letter-spacing: var(--heading-xl-letter-spacing);
8
8
  }
9
9
  .govgr-heading-lg {
10
10
  @apply mx-0;
11
11
  font-size: var(--heading-lg-font-size);
12
- line-height:var(--heading-lg-line-height);
13
- margin-bottom:var(--heading-lg-margin-bottom);
12
+ line-height: var(--heading-lg-line-height);
13
+ margin-bottom: var(--heading-lg-margin-bottom);
14
14
  font-weight: var(--heading-lg-font-weight);
15
15
  letter-spacing: var(--heading-lg-letter-spacing);
16
16
  }
17
17
  .govgr-heading-md {
18
18
  @apply mx-0;
19
19
  font-size: var(--heading-md-font-size);
20
- line-height:var(--heading-md-line-height);
21
- margin-bottom:var(--heading-md-margin-bottom);
20
+ line-height: var(--heading-md-line-height);
21
+ margin-bottom: var(--heading-md-margin-bottom);
22
22
  font-weight: var(--heading-md-font-weight);
23
23
  letter-spacing: var(--heading-md-letter-spacing);
24
24
  }
25
25
  .govgr-heading-sm {
26
- @apply mx-0 ;
26
+ @apply mx-0;
27
27
  font-size: var(--heading-sm-font-size);
28
- line-height:var(--heading-sm-line-height);
29
- margin-bottom:var(--heading-sm-margin-bottom);
28
+ line-height: var(--heading-sm-line-height);
29
+ margin-bottom: var(--heading-sm-margin-bottom);
30
30
  font-weight: var(--heading-sm-font-weight);
31
31
  letter-spacing: var(--heading-sm-letter-spacing);
32
- }
32
+ }
33
+ .govgr-heading-xs {
34
+ @apply mx-0;
35
+ font-size: var(--heading-xs-font-size);
36
+ line-height: var(--heading-xs-line-height);
37
+ margin-bottom: var(--heading-xs-margin-bottom);
38
+ font-weight: var(--heading-xs-font-weight);
39
+ letter-spacing: var(--heading-xs-letter-spacing);
40
+ }
33
41
  .govgr-caption-xl {
34
42
  @apply block mx-0 font-normal;
35
43
  color: var(--caption-xl-color);
@@ -38,7 +46,6 @@
38
46
  margin-bottom: var(--caption-xl-margin-bottom);
39
47
  font-weight: var(--caption-xl-font-weight);
40
48
  letter-spacing: var(--heading-xl-letter-spacing);
41
-
42
49
  }
43
50
  .govgr-caption-lg {
44
51
  @apply block mx-0 font-normal;
@@ -48,7 +55,6 @@
48
55
  margin-bottom: var(--caption-lg-margin-bottom);
49
56
  font-weight: var(--caption-lg-font-weight);
50
57
  letter-spacing: var(--caption-lg-letter-spacing);
51
-
52
58
  }
53
59
  .govgr-caption-md {
54
60
  @apply block mx-0 font-normal;
@@ -58,7 +64,6 @@
58
64
  margin-bottom: var(--caption-md-margin-bottom);
59
65
  font-weight: var(--caption-md-font-weight);
60
66
  letter-spacing: var(--caption-md-letter-spacing);
61
-
62
67
  }
63
68
  .govgr-\!-font-size-14 {
64
69
  @apply text-xs md:text-sm !important;
@@ -91,21 +96,26 @@
91
96
  letter-spacing: var(--list-letter-spacing);
92
97
  .govgr-list__item {
93
98
  @apply mb-2;
94
- &:last-child{
99
+ &:last-child {
95
100
  @apply mb-0;
96
101
  }
97
102
  }
98
103
  }
99
- .govgr-list__item>.govgr-list--bullet:nth-child(1){
104
+ .govgr-list__item > .govgr-list--bullet:nth-child(1) {
100
105
  list-style: circle inside none;
101
106
  }
102
- .govgr-list__item>.govgr-list>.govgr-list__item>.govgr-list--bullet:nth-child(1){
107
+ .govgr-list__item
108
+ > .govgr-list
109
+ > .govgr-list__item
110
+ > .govgr-list--bullet:nth-child(1) {
103
111
  @apply list-disc;
104
112
  }
105
- .govgr-list__item>.govgr-list:not(.govgr-list--bullet):not(.govgr-list--number):nth-child(1)>.govgr-list__item{
113
+ .govgr-list__item
114
+ > .govgr-list:not(.govgr-list--bullet):not(.govgr-list--number):nth-child(1)
115
+ > .govgr-list__item {
106
116
  @apply pl-10;
107
117
  }
108
- .govgr-list__item>.govgr-list{
118
+ .govgr-list__item > .govgr-list {
109
119
  @apply mb-0 mt-2;
110
120
  }
111
121
  .govgr-list--bullet {
@@ -114,9 +124,9 @@
114
124
  .govgr-list--number {
115
125
  @apply list-decimal list-outside pl-6;
116
126
  }
117
- .govgr-list--spaced:not(.govgr-list--horizontal)>.govgr-list__item {
127
+ .govgr-list--spaced:not(.govgr-list--horizontal) > .govgr-list__item {
118
128
  @apply mb-4;
119
- &:last-child{
129
+ &:last-child {
120
130
  @apply mb-0;
121
131
  }
122
132
  }
@@ -124,16 +134,24 @@
124
134
  @apply flex flex-wrap gap-x-6 gap-y-3;
125
135
  .govgr-list__item {
126
136
  @apply w-full sm:w-auto;
127
-
128
137
  }
129
138
  &.govgr-list--spaced {
130
139
  @apply gap-x-10 gap-y-5;
131
140
  }
132
141
  }
133
- .govgr-list, .govgr-blockquote {
142
+ @media (min-width: 768px) {
143
+ .govgr-list--col-2 {
144
+ column-count: 2;
145
+ }
146
+ .govgr-list--col-3 {
147
+ column-count: 2;
148
+ }
149
+ }
150
+ .govgr-list {
134
151
  @apply md:mb-8 mb-4 text-base-content;
135
152
  }
136
153
  .govgr-blockquote {
154
+ @apply lg:mb-8 mb-4 mt-8 md:mb-8 p-4 border-l-8 border-base-500 text-base-content;
137
155
  font-size: var(--blockquote-font-size);
138
156
  line-height: var(--blockquote-line-height);
139
157
  }
@@ -159,11 +177,6 @@
159
177
  color: var(--hint-color);
160
178
  letter-spacing: var(--hint-letter-spacing);
161
179
  }
162
- .govgr-background-dark, .govgr-masthead--primary {
163
- .govgr-hint {
164
- @apply opacity-70 text-white print:text-base-content;
165
- }
166
- }
167
180
 
168
181
  .govgr-\!-font-weight-regular {
169
182
  @apply font-normal !important;
@@ -185,36 +198,16 @@
185
198
  &:focus {
186
199
  color: var(--link-color-active);
187
200
  background-color: var(--color-focus);
188
- box-shadow: 0 -2px var(--color-focus), 0 4px var(--color-base-content);
189
- text-decoration:none !important;
190
- outline: none;
191
- }
192
- }
193
- .govgr-header {
194
- .govgr-header__container > .govgr-link {
195
- @apply text-white focus:text-link-active print:text-base-content;
196
- }
197
- .govgr-header__content > .govgr-link {
198
- @apply text-white focus:text-link-active print:text-base-content;
201
+ box-shadow:
202
+ 0 -2px var(--color-focus),
203
+ 0 4px var(--color-base-content);
204
+ text-decoration: none !important;
205
+ outline: none;
199
206
  }
200
207
  }
201
208
  .govgr-link--no-underline {
202
209
  @apply no-underline hover:underline;
203
210
  }
204
- .govgr-masthead--primary {
205
- .govgr-link {
206
- @apply text-white hover:text-white focus:text-base-content print:text-base-content;
207
- &:hover {
208
- text-decoration-thickness: 2px;
209
- }
210
- }
211
- .govgr-link--no-underline {
212
- @apply no-underline hover:underline;
213
- &:hover {
214
- text-decoration-thickness: 2px;
215
- }
216
- }
217
- }
218
211
 
219
212
  .govgr-back-link {
220
213
  font-size: var(--back-link-font-size);
@@ -225,18 +218,11 @@
225
218
  }
226
219
  &:focus {
227
220
  background-color: var(--color-focus);
228
- box-shadow: 0 -2px var(--color-focus), 0 4px var(--color-base-content);
229
- text-decoration:none;
230
- outline: none;
231
- }
232
- .govgr-svg-icon--caret {
233
- fill:var(--color-base-content);
234
- @apply md:w-4 md:h-4 w-3 h-3 inline-block mr-2;
235
- }
236
- }
237
- .govgr-masthead--primary {
238
- .govgr-back-link {
239
- @apply text-white print:text-base-content;
221
+ box-shadow:
222
+ 0 -2px var(--color-focus),
223
+ 0 4px var(--color-base-content);
224
+ text-decoration: none;
225
+ outline: none;
240
226
  }
241
227
  }
242
228
 
@@ -262,7 +248,8 @@
262
248
  .govgr-body .govgr-link[href^="#"]:after {
263
249
  display: none;
264
250
  }
265
- .govgr-link[href^="http://"]:after, .govgr-link[href^="https://"]:after {
251
+ .govgr-link[href^="http://"]:after, .govgr-link[href^="https://"]:after
252
+ {
266
253
  content: " (" attr(href) ")";
267
254
  font-size: 80%;
268
255
  }
@@ -272,4 +259,28 @@
272
259
  .govgr-link {
273
260
  @apply text-base-content;
274
261
  }
275
- }
262
+ }
263
+
264
+ /* overrides */
265
+
266
+ .govgr-link {
267
+ .govgr-svg-icon {
268
+ fill: var(--color-link);
269
+ }
270
+ &:hover {
271
+ .govgr-svg-icon {
272
+ fill: var(--color-link-hover);
273
+ }
274
+ }
275
+ &:focus {
276
+ .govgr-svg-icon {
277
+ fill: var(--color-link-active);
278
+ }
279
+ }
280
+ }
281
+ .govgr-back-link {
282
+ .govgr-svg-icon--caret {
283
+ fill: var(--color-base-content);
284
+ @apply md:w-4 md:h-4 w-3 h-3 inline-block mr-2;
285
+ }
286
+ }
@@ -0,0 +1,19 @@
1
+ .govgr-warning-text {
2
+ font-size: var(--warning-text-font-size);
3
+ @apply p-4;
4
+ @apply flex pt-4 pb-4 pl-0 pr-0;
5
+ .govgr-warning-text__icon {
6
+ @apply text-base-content-invert font-bold bg-base-content text-3xl leading-10 text-center
7
+ rounded-3xl md:min-h-10 min-w-10 h-fit mr-6 mt-1
8
+ print:bg-white print:border-2 print:border-base-content print:text-base-content;
9
+ }
10
+ .govgr-warning-text__text {
11
+ @apply flex items-center;
12
+ }
13
+ .govgr-warning-text__assistive {
14
+ @apply absolute w-px h-px m-0 p-0 border-0 overflow-hidden whitespace-nowrap !important;
15
+ clip: rect(0 0 0 0) !important;
16
+ -webkit-clip-path: inset(50%) !important;
17
+ clip-path: inset(50%) !important;
18
+ }
19
+ }
@@ -29,7 +29,7 @@ export default function Home() {
29
29
  <aside className="govgr-admin-side-content">
30
30
  <div className="govgr-filter">
31
31
  <div className="govgr-filter__heading">
32
- <a className="govgr-link govgr-filter__close-btn" href="#">
32
+ <a className="govgr-link govgr-close-btn" href="#">
33
33
  Κλείσιμο
34
34
  <svg class="govgr-svg-icon--close" focusable="true" viewBox="0 0 24 24" aria-hidden="true" > <polygon points="14.4,11.8 22,4.2 19.7,1.8 12,9.4 4.4,1.8 2,4.2 9.7,11.9 2.1,19.5 4.4,21.9 12.1,14.3 19.7,21.9 22.1,19.5 " /></svg>
35
35
  </a>
@@ -394,27 +394,6 @@
394
394
  .govgr-grid-inline {
395
395
  @apply inline-grid;
396
396
  }
397
- .govgr-grid__gap-1 {
398
- @apply gap-1;
399
- }
400
- .govgr-grid__gap-2 {
401
- @apply gap-2;
402
- }
403
- .govgr-grid__gap-4 {
404
- @apply gap-4;
405
- }
406
- .govgr-grid__gap-6 {
407
- @apply gap-6;
408
- }
409
- .govgr-grid__gap-8 {
410
- @apply gap-8;
411
- }
412
- .govgr-grid__gap-10 {
413
- @apply gap-10;
414
- }
415
- .govgr-grid__gap-12 {
416
- @apply gap-12;
417
- }
418
397
  .govgr-grid__col-auto {
419
398
  @apply col-auto;
420
399
  }
@@ -462,4 +441,145 @@
462
441
  }
463
442
  .govgr-print-visible-inline {
464
443
  @apply print:inline !important;
444
+ }
445
+ .govgr-gap-1 {
446
+ @apply gap-1;
447
+ }
448
+ .govgr-gap-2 {
449
+ @apply gap-2;
450
+ }
451
+ .govgr-gap-4 {
452
+ @apply gap-4;
453
+ }
454
+ .govgr-gap-6 {
455
+ @apply gap-6;
456
+ }
457
+ .govgr-gap-8 {
458
+ @apply gap-8;
459
+ }
460
+ .govgr-gap-10 {
461
+ @apply gap-10;
462
+ }
463
+ .govgr-gap-12 {
464
+ @apply gap-12;
465
+ }
466
+ .govgr-gap-xs-1 {
467
+ @apply gap-1;
468
+ }
469
+ .govgr-gap-xs-2 {
470
+ @apply gap-2;
471
+ }
472
+ .govgr-gap-xs-4 {
473
+ @apply gap-4;
474
+ }
475
+ .govgr-gap-xs-5 {
476
+ @apply gap-5;
477
+ }
478
+ .govgr-gap-xs-6 {
479
+ @apply gap-6;
480
+ }
481
+ .govgr-gap-xs-8 {
482
+ @apply gap-8;
483
+ }
484
+ .govgr-gap-xs-10 {
485
+ @apply gap-10;
486
+ }
487
+ .govgr-gap-xs-12 {
488
+ @apply gap-12;
489
+ }
490
+ .govgr-gap-sm-1 {
491
+ @apply sm:gap-1;
492
+ }
493
+ .govgr-gap-sm-2 {
494
+ @apply sm:gap-2;
495
+ }
496
+ .govgr-gap-sm-4 {
497
+ @apply sm:gap-4;
498
+ }
499
+ .govgr-gap-sm-5 {
500
+ @apply sm:gap-5;
501
+ }
502
+ .govgr-gap-sm-6 {
503
+ @apply sm:gap-6;
504
+ }
505
+ .govgr-gap-sm-8 {
506
+ @apply sm:gap-8;
507
+ }
508
+ .govgr-gap-sm-10 {
509
+ @apply sm:gap-10;
510
+ }
511
+ .govgr-gap-sm-12 {
512
+ @apply sm:gap-12;
513
+ }
514
+ .govgr-gap-md-1 {
515
+ @apply md:gap-1;
516
+ }
517
+ .govgr-gap-md-2 {
518
+ @apply md:gap-2;
519
+ }
520
+ .govgr-gap-md-4 {
521
+ @apply md:gap-4;
522
+ }
523
+ .govgr-gap-md-5 {
524
+ @apply md:gap-5;
525
+ }
526
+ .govgr-gap-md-6 {
527
+ @apply md:gap-6;
528
+ }
529
+ .govgr-gap-md-8 {
530
+ @apply md:gap-8;
531
+ }
532
+ .govgr-gap-md-10 {
533
+ @apply md:gap-10;
534
+ }
535
+ .govgr-gap-md-12 {
536
+ @apply md:gap-12;
537
+ }
538
+ .govgr-gap-lg-1 {
539
+ @apply lg:gap-1;
540
+ }
541
+ .govgr-gap-lg-2 {
542
+ @apply lg:gap-2;
543
+ }
544
+ .govgr-gap-lg-4 {
545
+ @apply lg:gap-4;
546
+ }
547
+ .govgr-gap-lg-5 {
548
+ @apply lg:gap-5;
549
+ }
550
+ .govgr-gap-lg-6 {
551
+ @apply lg:gap-6;
552
+ }
553
+ .govgr-gap-lg-8 {
554
+ @apply lg:gap-8;
555
+ }
556
+ .govgr-gap-lg-10 {
557
+ @apply lg:gap-10;
558
+ }
559
+ .govgr-gap-lg-12 {
560
+ @apply lg:gap-12;
561
+ }
562
+ .govgr-gap-xl-1 {
563
+ @apply xl:gap-1;
564
+ }
565
+ .govgr-gap-xl-2 {
566
+ @apply xl:gap-2;
567
+ }
568
+ .govgr-gap-xl-4 {
569
+ @apply xl:gap-4;
570
+ }
571
+ .govgr-gap-xl-5 {
572
+ @apply xl:gap-5;
573
+ }
574
+ .govgr-gap-xl-6 {
575
+ @apply xl:gap-6;
576
+ }
577
+ .govgr-gap-xl-8 {
578
+ @apply xl:gap-8;
579
+ }
580
+ .govgr-gap-xl-10 {
581
+ @apply xl:gap-10;
582
+ }
583
+ .govgr-gap-xl-12 {
584
+ @apply xl:gap-12;
465
585
  }