@digigov/css 0.38.2 → 1.0.0-blabla-test

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 (62) hide show
  1. package/defaultTheme/misc.json +1 -1
  2. package/defaultTheme/typography.json +10 -7
  3. package/dist/base/index.css +3 -3
  4. package/dist/base.js +1 -1
  5. package/dist/components.js +1 -1
  6. package/dist/digigov.css +5 -5
  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 +3 -6
  11. package/src/components/accordion.css +8 -7
  12. package/src/components/admin-header.css +0 -6
  13. package/src/components/admin-layout.css +1 -37
  14. package/src/components/autocomplete.css +33 -45
  15. package/src/components/bottom-info.css +2 -4
  16. package/src/components/breadcrumbs.css +12 -12
  17. package/src/components/button.css +12 -10
  18. package/src/components/card.css +41 -43
  19. package/src/components/checkboxes.css +2 -10
  20. package/src/components/chip.css +48 -0
  21. package/src/components/copy-to-clipboard.css +10 -12
  22. package/src/components/details.css +5 -6
  23. package/src/components/drawer.css +4 -4
  24. package/src/components/dropdown.css +26 -34
  25. package/src/components/filter.css +7 -39
  26. package/src/components/footer.css +1 -4
  27. package/src/components/form.css +54 -43
  28. package/src/components/full-page-background.css +0 -3
  29. package/src/components/header.css +35 -34
  30. package/src/components/index.css +2 -3
  31. package/src/components/kitchensink.css +2 -2
  32. package/src/components/layout.css +9 -6
  33. package/src/components/loader.css +11 -12
  34. package/src/components/misc.css +9 -12
  35. package/src/components/modal.css +7 -6
  36. package/src/components/nav.css +5 -44
  37. package/src/components/notification-banner.css +8 -8
  38. package/src/components/pagination.css +20 -8
  39. package/src/components/phase-banner.css +13 -10
  40. package/src/components/radios.css +9 -1
  41. package/src/components/skiplink.css +6 -7
  42. package/src/components/stepnav.css +56 -62
  43. package/src/components/summary-list.css +25 -32
  44. package/src/components/svg-icons.css +90 -49
  45. package/src/components/table.css +111 -59
  46. package/src/components/tabs.css +7 -12
  47. package/src/components/task-list.css +11 -10
  48. package/src/components/timeline.css +9 -7
  49. package/src/components/typography.css +65 -49
  50. package/src/pages/admin-filtering-data.js +21 -21
  51. package/src/pages/admin.js +9 -9
  52. package/src/pages/dropdown.js +27 -27
  53. package/src/pages/form.js +26 -26
  54. package/src/pages/headings/service-heading.js +7 -7
  55. package/src/pages/index.js +23 -23
  56. package/src/pages/pagination.js +6 -6
  57. package/src/pages/table.js +15 -15
  58. package/src/utilities/index.css +0 -33
  59. package/src/utilities/utilities.css +0 -33
  60. package/src/components/admin-footer.css +0 -3
  61. package/src/components/admin-form.css +0 -5
  62. package/src/components/cookie.css +0 -3
@@ -3,7 +3,7 @@ import Image from 'next/image';
3
3
 
4
4
  export default function Home() {
5
5
  return (
6
- <div className="example">
6
+ <div>
7
7
 
8
8
  <header className="govgr-header">
9
9
  <div className="govgr-header__container">
@@ -16,7 +16,7 @@ export default function Home() {
16
16
  </a>
17
17
  <a href="/" className="govgr-header-title">Service name</a>
18
18
  </div>
19
- <svg className="govgr-burger-icon" focusable="true" viewBox="0 0 24 24" aria-hidden="true" > <rect id="govgr-burger-icon__line-1" width="20" height="3.3" /><rect id="govgr-burger-icon__line-2" width="20" height="3.3" /><rect id="govgr-burger-icon__line-3" width="20" height="3.3" /></svg>
19
+ <svg className="govgr-svg-icon--burger" focusable="true" viewBox="0 0 24 24" aria-hidden="true" > <rect id="govgr-svg-icon--burger__line-1" width="20" height="3.3" /><rect id="govgr-svg-icon--burger__line-2" width="20" height="3.3" /><rect id="govgr-svg-icon--burger__line-3" width="20" height="3.3" /></svg>
20
20
  </div>
21
21
  </header>
22
22
  <nav className="govgr-nav govgr-nav--horizontal">
@@ -28,8 +28,8 @@ export default function Home() {
28
28
  </ul>
29
29
  </nav>
30
30
 
31
- <svg className="govgr-burger-icon govgr-burger-icon--active" focusable="true" viewBox="0 0 24 24" aria-hidden="true" >
32
- <rect id="govgr-burger-icon__line-1" width="20" height="3.3" /><rect id="govgr-burger-icon__line-2" width="20" height="3.3" /><rect id="govgr-burger-icon__line-3" width="20" height="3.3" />
31
+ <svg className="govgr-svg-icon--burger govgr-svg-icon--burger--active" focusable="true" viewBox="0 0 24 24" aria-hidden="true" >
32
+ <rect id="govgr-svg-icon--burger__line-1" width="20" height="3.3" /><rect id="govgr-svg-icon--burger__line-2" width="20" height="3.3" /><rect id="govgr-svg-icon--burger__line-3" width="20" height="3.3" />
33
33
  </svg>
34
34
 
35
35
 
@@ -37,7 +37,7 @@ export default function Home() {
37
37
  <div className="govgr-width-container">
38
38
  <div className="govgr-main-wrapper">
39
39
  <div className="govgr-grid-column-two-thirds">
40
- <img className="govgr-masthead-logo header-logo" src="https://dilosi.services.gov.gr/minedu-logo.svg" alt="minedu logo" />
40
+ <img className="govgr-masthead__logo" src="https://dilosi.services.gov.gr/minedu-logo.svg" alt="minedu logo" />
41
41
  <h1 className="govgr-heading-xl"> Σχεδιάστε την υπηρεσία σας, με το στυλ του GOV.GR </h1>
42
42
  <p className="govgr-masthead-body">
43
43
  Χρησιμοποιείστε αυτόν τον οδηγό ώστε να φτιάξετε μια υπηρεσία συνεπή στα πρότυπα του GOV.GR. Αποκτήστε γνώση από την έρευνα και την εμπειρία άλλων ομάδων και αποφύγετε την επανάληψη εργασιών που έχουν ήδη γίνει.
@@ -46,7 +46,7 @@ export default function Home() {
46
46
  <p className="govgr-hint">Τελευταία ενημέρωση: 08/12/2021 </p>
47
47
  <button className="govgr-btn govgr-btn-primary govgr-btn-cta">
48
48
  Ξεκινήστε εδώ
49
- <svg viewBox="0 0 24 24" className="govgr-arrow--right" focusable="false" aria-hidden="true"> <path d="M8.5,2L6.1,4.3l7.6,7.7l-7.6,7.6L8.5,22l10-10L8.5,2z" /> </svg>
49
+ <svg viewBox="0 0 24 24" className="govgr-svg-icon--arrow--right" focusable="false" aria-hidden="true"> <path d="M8.5,2L6.1,4.3l7.6,7.7l-7.6,7.6L8.5,22l10-10L8.5,2z" /> </svg>
50
50
  </button>
51
51
  </div>
52
52
  </div>
@@ -59,11 +59,11 @@ export default function Home() {
59
59
 
60
60
  <span className="govgr-caption-xl"> Caption for h1 </span>
61
61
  <h1 className="govgr-heading-xl">Heading 1 - Κεντρικός τίτλος</h1>
62
- <span className="govgr-caption-l"> Caption for h2 </span>
63
- <h2 className="govgr-heading-l">Heading 2</h2>
64
- <span className="govgr-caption-m"> Caption for h3 </span>
65
- <h3 className="govgr-heading-m">Heading 3</h3>
66
- <h4 className="govgr-heading-s">Heading 4</h4>
62
+ <span className="govgr-caption-lg"> Caption for h2 </span>
63
+ <h2 className="govgr-heading-lg">Heading 2</h2>
64
+ <span className="govgr-caption-md"> Caption for h3 </span>
65
+ <h3 className="govgr-heading-md">Heading 3</h3>
66
+ <h4 className="govgr-heading-sm">Heading 4</h4>
67
67
  <p className="govgr-body">Ο παρών οδηγός δημιουργήθηκε για να καλύψει τις συνεχώς αυξανόμενες ανάγκες της δημόσιας διοίκησης για τη
68
68
  δημιουργία ενιαίων και φιλικών
69
69
  ψηφιακών εμπειριών χρήσης, με γνώμονα πάντα την εξυπηρέτηση όλων των
@@ -98,9 +98,9 @@ export default function Home() {
98
98
 
99
99
  <button className="govgr-btn govgr-btn-primary govgr-btn-cta">
100
100
  Είσοδος στην υπηρεσία
101
- <svg viewBox="0 0 24 24" className="govgr-arrow--right" focusable="false" aria-hidden="true"> <path d="M8.5,2L6.1,4.3l7.6,7.7l-7.6,7.6L8.5,22l10-10L8.5,2z" /> </svg>
101
+ <svg viewBox="0 0 24 24" className="govgr-svg-icon--arrow--right" focusable="false" aria-hidden="true"> <path d="M8.5,2L6.1,4.3l7.6,7.7l-7.6,7.6L8.5,22l10-10L8.5,2z" /> </svg>
102
102
  </button>
103
- <div className="govgr-button-group">
103
+ <div className="govgr-btn-group">
104
104
  <button className="govgr-btn govgr-btn-primary">
105
105
  Συνέχεια
106
106
  </button>
@@ -109,7 +109,7 @@ export default function Home() {
109
109
  </div>
110
110
 
111
111
  <a href="#" className="govgr-back-link">
112
- <svg className="govgr-caret--left" viewBox="0 0 24 24" aria-hidden="true"><path d="M18,22V2L6,12L18,22z" /></svg>
112
+ <svg className="govgr-svg-icon--caret--left" viewBox="0 0 24 24" aria-hidden="true"><path d="M18,22V2L6,12L18,22z" /></svg>
113
113
  Πίσω
114
114
  </a>
115
115
  <br />
@@ -137,7 +137,7 @@ export default function Home() {
137
137
  </blockquote>
138
138
 
139
139
  <div className="govgr-error-summary">
140
- <h3 className="govgr-heading-s">Υπήρξε κάποιο πρόβλημα</h3>
140
+ <h3 className="govgr-heading-sm">Υπήρξε κάποιο πρόβλημα</h3>
141
141
  <a className="govgr-link" href="#"> Πρέπει να συμπληρώσετε το έτος</a>
142
142
  </div>
143
143
 
@@ -200,7 +200,7 @@ export default function Home() {
200
200
  </dl>
201
201
 
202
202
  <div className="govgr-tabs">
203
- <h6 className="govgr-heading-s govgr-tabs__title">Περιεχόμενα</h6>
203
+ <h6 className="govgr-heading-sm govgr-tabs__title">Περιεχόμενα</h6>
204
204
  <ul className="govgr-tabs__list" role="tablist">
205
205
  <li className="govgr-tabs__list-item govgr-tabs__list-item-selected" role="presentation">
206
206
  <a className="govgr-tabs__tab" href="#user-details" id="tab_user-details" role="tab" aria-controls="past-week" aria-selected="false" tabindex="-1">
@@ -219,18 +219,18 @@ export default function Home() {
219
219
  </li>
220
220
  </ul>
221
221
  <div id="tab1" className="govgr-tabs__panel govgr-tabs__panel-visible">
222
- <h3 className="govgr-heading-l">Στοιχεία πολίτη</h3>
222
+ <h3 className="govgr-heading-lg">Στοιχεία πολίτη</h3>
223
223
  <p className="govgr-body">Πληροφορίες</p>
224
224
  </div>
225
225
  <div id="tab2" className="govgr-tabs__panel">
226
- <h3 className="govgr-heading-m">παράδειγμα 2</h3>
226
+ <h3 className="govgr-heading-md">παράδειγμα 2</h3>
227
227
  <p>
228
228
  It can take up to 8 weeks to register a lasting power of attorney if there are no mistakes in the
229
229
  application.
230
230
  </p>
231
231
  </div>
232
232
  <div id="tab3" className="govgr-tabs__panel">
233
- <h3 className="govgr-heading-m">άλλο παράδειγμα</h3>
233
+ <h3 className="govgr-heading-md">άλλο παράδειγμα</h3>
234
234
  <p>
235
235
  It can take up to 8 weeks to register a lasting power of attorney if there are no mistakes in the
236
236
  application.
@@ -310,7 +310,7 @@ export default function Home() {
310
310
  </div>
311
311
  </div>
312
312
  </div>
313
- <div className="govgr-grid-column-one-third">
313
+ <div className="govgr-aside govgr-grid-column-one-third">
314
314
  <h4>Σχετικοί Σύνδεσμοι</h4>
315
315
  <nav className="govgr-vertical-nav">
316
316
  <a className="govgr-link govgr-vertical-nav__item govgr-vertical-nav__item--active" href="#"> Σύνδεσμος 1</a>
@@ -342,7 +342,7 @@ export default function Home() {
342
342
  <div className="govgr-width-container">
343
343
  <div className="govgr-footer__navigation">
344
344
  <div className="govgr-footer__section">
345
- <h2 className="govgr-footer__heading govgr-heading-s">Λίστα δύο στηλών</h2>
345
+ <h2 className="govgr-footer__heading govgr-heading-sm">Λίστα δύο στηλών</h2>
346
346
  <ul className="govgr-footer__list govgr-footer__list--columns-2">
347
347
  <li className="govgr-footer__list-item">
348
348
  <a className="govgr-footer__link" href="#1">Σύνδεσμος 1</a>
@@ -365,7 +365,7 @@ export default function Home() {
365
365
  </ul>
366
366
  </div>
367
367
  <div className="govgr-footer__section">
368
- <h2 className="govgr-footer__heading govgr-heading-s">Λίστα μίας στήλης</h2>
368
+ <h2 className="govgr-footer__heading govgr-heading-sm">Λίστα μίας στήλης</h2>
369
369
  <ul className="govgr-footer__list ">
370
370
  <li className="govgr-footer__list-item">
371
371
  <a className="govgr-footer__link" href="#1">Σύνδεσμος 1</a>
@@ -379,7 +379,7 @@ export default function Home() {
379
379
  </ul>
380
380
  </div>
381
381
  </div>
382
- <hr className="govgr-footer__section-break" />
382
+ <hr className="govgr-section-break govgr-section-break--visible" />
383
383
  <div className="govgr-footer__meta">
384
384
  <div className="govgr-footer__meta-item govgr-footer__meta-item--grow">
385
385
  <div className="govgr-footer__content">
@@ -8,7 +8,7 @@ export default function Pagination() {
8
8
  <a class="govgr-link" href="">
9
9
  <svg
10
10
  aria-hidden="true"
11
- className=" govgr-svg-icon govgr-arrow--left"
11
+ className=" govgr-svg-icon govgr-svg-icon--arrow--left"
12
12
  focusable="false"
13
13
  viewBox="0 0 24 24"
14
14
  >
@@ -30,7 +30,7 @@ export default function Pagination() {
30
30
  <a class="govgr-link" href=""><span class="govgr-visually-hidden"> set of pages</span>
31
31
  <svg
32
32
  aria-hidden="true"
33
- className=" govgr-svg-icon govgr-arrow--right"
33
+ className=" govgr-svg-icon govgr-svg-icon--arrow--right"
34
34
  focusable="false"
35
35
  viewBox="0 0 24 24"
36
36
  >
@@ -49,7 +49,7 @@ export default function Pagination() {
49
49
  <a class="govgr-link" href="">
50
50
  <svg
51
51
  aria-hidden="true"
52
- className=" govgr-svg-icon govgr-arrow--left"
52
+ className=" govgr-svg-icon govgr-svg-icon--arrow--left"
53
53
  focusable="false"
54
54
  viewBox="0 0 24 24"
55
55
  >
@@ -67,7 +67,7 @@ export default function Pagination() {
67
67
  <a class="govgr-link" href="">Next<span class="govgr-visually-hidden"> set of pages</span>
68
68
  <svg
69
69
  aria-hidden="true"
70
- className=" govgr-svg-icon govgr-arrow--right"
70
+ className=" govgr-svg-icon govgr-svg-icon--arrow--right"
71
71
  focusable="false"
72
72
  viewBox="0 0 24 24"
73
73
  >
@@ -87,7 +87,7 @@ export default function Pagination() {
87
87
  <a class="govgr-link" href="">
88
88
  <svg
89
89
  aria-hidden="true"
90
- className=" govgr-svg-icon govgr-arrow--left"
90
+ className=" govgr-svg-icon govgr-svg-icon--arrow--left"
91
91
  focusable="false"
92
92
  viewBox="0 0 24 24"
93
93
  >
@@ -107,7 +107,7 @@ export default function Pagination() {
107
107
  <a class="govgr-link" href="">Next<span class="govgr-visually-hidden"> set of pages</span>
108
108
  <svg
109
109
  aria-hidden="true"
110
- className=" govgr-svg-icon govgr-arrow--right"
110
+ className=" govgr-svg-icon govgr-svg-icon--arrow--right"
111
111
  focusable="false"
112
112
  viewBox="0 0 24 24"
113
113
  >
@@ -1,17 +1,17 @@
1
1
  export default function Table() {
2
2
  return (
3
- <body className="example">
3
+ <body>
4
4
 
5
5
 
6
6
  <table className="govgr-table">
7
- <caption className="govgr-table__caption govgr-table__caption--s">Table caption S</caption>
8
- <caption className="govgr-table__caption govgr-table__caption--m">Table caption M</caption>
9
- <caption className="govgr-table__caption govgr-table__caption--l">Table caption L</caption>
7
+ <caption className="govgr-table__caption govgr-table__caption--sm">Table caption S</caption>
8
+ <caption className="govgr-table__caption govgr-table__caption--md">Table caption M</caption>
9
+ <caption className="govgr-table__caption govgr-table__caption--lg">Table caption L</caption>
10
10
  <caption className="govgr-table__caption govgr-table__caption--xl">Table caption XL</caption>
11
11
  </table>
12
12
 
13
13
  <table className="govgr-table">
14
- <caption className="govgr-table__caption govgr-table__caption--m">Simple Table</caption>
14
+ <caption className="govgr-table__caption govgr-table__caption--md">Simple Table</caption>
15
15
  <thead className="govgr-table__head">
16
16
  <tr className="govgr-table__row">
17
17
  <th scope="col" className="govgr-table__header">Date</th>
@@ -35,8 +35,8 @@ export default function Table() {
35
35
  </table>
36
36
 
37
37
  {/* Table with vertical lines */}
38
- <table className="govgr-table govgr-table--with-vertical-lines">
39
- <caption className="govgr-table__caption govgr-table__caption--m">Table with vertical lines</caption>
38
+ <table className="govgr-table govgr-table--vertical-lines">
39
+ <caption className="govgr-table__caption govgr-table__caption--md">Table with vertical lines</caption>
40
40
  <thead className="govgr-table__head">
41
41
  <tr className="govgr-table__row">
42
42
  <th scope="col" className="govgr-table__header">Date</th>
@@ -64,7 +64,7 @@ export default function Table() {
64
64
  </table>
65
65
 
66
66
  <table className="govgr-table">
67
- <caption className="govgr-table__caption govgr-table__caption--m">Table with numbers and custom column widths </caption>
67
+ <caption className="govgr-table__caption govgr-table__caption--md">Table with numbers and custom column widths </caption>
68
68
  <thead className="govgr-table__head">
69
69
  <tr className="govgr-table__row">
70
70
  <th scope="col" className="govgr-table__header govgr-!-width-one-half">Date</th>
@@ -87,8 +87,8 @@ export default function Table() {
87
87
  </table>
88
88
 
89
89
  {/* Table with primary color at header */}
90
- <table className="govgr-table govgr-table--dark govgr-table--with-vertical-lines">
91
- <caption className="govgr-table__caption govgr-table__caption--m">Table with primary color at header</caption>
90
+ <table className="govgr-table govgr-table--dark govgr-table--vertical-lines">
91
+ <caption className="govgr-table__caption govgr-table__caption--md">Table with primary color at header</caption>
92
92
  <thead className="govgr-table__head">
93
93
  <tr className="govgr-table__row">
94
94
  <th scope="col" className="govgr-table__header govgr-table__header--dark">Date</th>
@@ -113,7 +113,7 @@ export default function Table() {
113
113
 
114
114
  {/* Table with gray color at all headers */}
115
115
  <table className="govgr-table govgr-table--dark ">
116
- <caption className="govgr-table__caption govgr-table__caption--m">Table with gray color at header</caption>
116
+ <caption className="govgr-table__caption govgr-table__caption--md">Table with gray color at header</caption>
117
117
  <thead className="govgr-table__head">
118
118
  <tr className="govgr-table__row">
119
119
  <th scope="col" className="govgr-table__header govgr-table__header--gray">Date</th>
@@ -137,7 +137,7 @@ export default function Table() {
137
137
 
138
138
  {/* Zebra Table */}
139
139
  <table className="govgr-table govgr-table--zebra">
140
- <caption className="govgr-table__caption govgr-table__caption--m">Zebra Table</caption>
140
+ <caption className="govgr-table__caption govgr-table__caption--md">Zebra Table</caption>
141
141
  <thead className="govgr-table__head">
142
142
  <tr className="govgr-table__row">
143
143
  <th scope="col" className="govgr-table__header">Date</th>
@@ -170,7 +170,7 @@ export default function Table() {
170
170
 
171
171
  {/* Zebra Table with dark header */}
172
172
  <table className="govgr-table govgr-table--dark govgr-table--zebra">
173
- <caption className="govgr-table__caption govgr-table__caption--m">Zebra Table with dark header</caption>
173
+ <caption className="govgr-table__caption govgr-table__caption--md">Zebra Table with dark header</caption>
174
174
  <thead className="govgr-table__head">
175
175
  <tr className="govgr-table__row">
176
176
  <th scope="col" className="govgr-table__header govgr-table__header--dark">Date</th>
@@ -203,7 +203,7 @@ export default function Table() {
203
203
 
204
204
  {/* Zebra Table with dark headers */}
205
205
  <table className="govgr-table govgr-table--dark govgr-table--zebra">
206
- <caption className="govgr-table__caption govgr-table__caption--m">Zebra Table with dark header</caption>
206
+ <caption className="govgr-table__caption govgr-table__caption--md">Zebra Table with dark header</caption>
207
207
  <thead className="govgr-table__head">
208
208
  <tr className="govgr-table__row">
209
209
  <th scope="col" className="govgr-table__header govgr-table__header--dark">Date</th>
@@ -248,7 +248,7 @@ export default function Table() {
248
248
 
249
249
  {/* Densed zebra Table */}
250
250
  <table className="govgr-table govgr-table--zebra govgr-table--dense">
251
- <caption className="govgr-table__caption govgr-table__caption--m">Densed zebra Table</caption>
251
+ <caption className="govgr-table__caption govgr-table__caption--md">Densed zebra Table</caption>
252
252
  <thead className="govgr-table__head">
253
253
  <tr className="govgr-table__row">
254
254
  <th scope="col" className="govgr-table__header">Date</th>
@@ -400,9 +400,6 @@
400
400
  .govgr-grid__gap-2 {
401
401
  @apply gap-2;
402
402
  }
403
- .govgr-grid__gap-3 {
404
- @apply gap-3;
405
- }
406
403
  .govgr-grid__gap-4 {
407
404
  @apply gap-4;
408
405
  }
@@ -457,36 +454,6 @@
457
454
  .govgr-grid__col-span-12 {
458
455
  @apply col-span-12;
459
456
  }
460
- .govgr-lg-up {
461
- @apply lg:hidden;
462
- }
463
- .govgr-md-up {
464
- @apply md:hidden;
465
- }
466
- .govgr-sm-up {
467
- @apply sm:hidden;
468
- }
469
- .govgr-xl-up {
470
- @apply xl:hidden;
471
- }
472
- .govgr-xs-up {
473
- @apply xs:hidden;
474
- }
475
- .govgr-lg-up-block {
476
- @apply lg:block !important;
477
- }
478
- .govgr-md-up-block {
479
- @apply md:block !important;
480
- }
481
- .govgr-sm-up-block {
482
- @apply sm:block !important;
483
- }
484
- .govgr-xl-up-block {
485
- @apply xl:block !important;
486
- }
487
- .govgr-xs-up-block {
488
- @apply xs:block !important;
489
- }
490
457
  .govgr-print-hidden {
491
458
  @apply print:hidden !important;
492
459
  }
@@ -402,9 +402,6 @@
402
402
  .govgr-grid__gap-2 {
403
403
  @apply gap-2;
404
404
  }
405
- .govgr-grid__gap-3 {
406
- @apply gap-3;
407
- }
408
405
  .govgr-grid__gap-4 {
409
406
  @apply gap-4;
410
407
  }
@@ -459,36 +456,6 @@
459
456
  .govgr-grid__col-span-12 {
460
457
  @apply col-span-12;
461
458
  }
462
- .govgr-lg-up {
463
- @apply lg:hidden;
464
- }
465
- .govgr-md-up {
466
- @apply md:hidden;
467
- }
468
- .govgr-sm-up {
469
- @apply sm:hidden;
470
- }
471
- .govgr-xl-up {
472
- @apply xl:hidden;
473
- }
474
- .govgr-xs-up {
475
- @apply xs:hidden;
476
- }
477
- .govgr-lg-up-block {
478
- @apply lg:block !important;
479
- }
480
- .govgr-md-up-block {
481
- @apply md:block !important;
482
- }
483
- .govgr-sm-up-block {
484
- @apply sm:block !important;
485
- }
486
- .govgr-xl-up-block {
487
- @apply xl:block !important;
488
- }
489
- .govgr-xs-up-block {
490
- @apply xs:block !important;
491
- }
492
459
  .govgr-print-hidden {
493
460
  @apply print:hidden !important;
494
461
  }
@@ -1,3 +0,0 @@
1
- .govgr-admin-footer {
2
- @apply border-0 border-solid font-normal text-base py-4 md:py-8 border-t-4 border-tertiary text-base-800 bg-base-200 w-full;
3
- }
@@ -1,5 +0,0 @@
1
- .govgr-admin-filter-wrapper {
2
- .govgr-field:last-child {
3
- @apply border-b border-base-300 md:border-0 mb-0 pb-6;
4
- }
5
- }
@@ -1,3 +0,0 @@
1
- .govgr-cookie-banner {
2
- @apply bg-base-200;
3
- }