@digigov/css 1.0.0-7c9716da → 1.0.0-88820b1e

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 (43) 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/accordion.css +50 -3
  11. package/src/components/admin-header.css +1 -1
  12. package/src/components/admin-layout.css +6 -0
  13. package/src/components/button.css +18 -0
  14. package/src/components/checkboxes.css +5 -2
  15. package/src/components/chip.css +5 -5
  16. package/src/components/copy-to-clipboard.css +36 -29
  17. package/src/components/drawer.css +0 -21
  18. package/src/components/filter.css +6 -27
  19. package/src/components/footer.css +16 -16
  20. package/src/components/form.css +14 -18
  21. package/src/components/header.css +3 -3
  22. package/src/components/index.css +1 -0
  23. package/src/components/kitchensink.css +2 -2
  24. package/src/components/layout.css +7 -8
  25. package/src/components/loader.css +7 -7
  26. package/src/components/modal.css +0 -3
  27. package/src/components/nav.css +4 -4
  28. package/src/components/notification-banner.css +20 -9
  29. package/src/components/pagination.css +1 -1
  30. package/src/components/panel.css +4 -4
  31. package/src/components/phase-banner.css +1 -1
  32. package/src/components/radios.css +4 -8
  33. package/src/components/stack.css +66 -0
  34. package/src/components/stepnav.css +10 -4
  35. package/src/components/table.css +10 -8
  36. package/src/components/task-list.css +3 -4
  37. package/src/components/typography.css +18 -2
  38. package/src/pages/admin-filtering-data.js +1 -1
  39. package/src/pages/dropdown.js +2 -2
  40. package/src/pages/form.js +1 -1
  41. package/src/pages/index.js +12 -10
  42. package/src/utilities/index.css +21 -21
  43. package/src/utilities/utilities.css +23 -22
@@ -7,11 +7,11 @@
7
7
  @apply float-right cursor-pointer;
8
8
  }
9
9
  }
10
- .govgr-header__container {
10
+ .govgr-header__content {
11
11
  @apply px-4 py-2 mx-auto max-w-5xl w-full flex justify-between items-center
12
12
  print:px-0 gap-3;
13
13
  }
14
- .govgr-header__content {
14
+ .govgr-header__section {
15
15
  @apply flex justify-start flex-wrap items-center gap-x-4 gap-y-2
16
16
  print:gap-1;
17
17
  }
@@ -53,7 +53,7 @@
53
53
  .govgr-grid-column-two-thirds > *:last-child {
54
54
  @apply mb-0;
55
55
  }
56
- .govgr-header__container {
56
+ .govgr-header__content {
57
57
  @apply flex-wrap;
58
58
  }
59
59
  }
@@ -25,6 +25,7 @@
25
25
  @import "./panel.css";
26
26
  @import "./phase-banner.css";
27
27
  @import "./summary-list.css";
28
+ @import "./stack.css";
28
29
  @import "./tabs.css";
29
30
  @import "./misc.css";
30
31
  @import "./modal.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,18 +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%;
13
+ .govgr-container--full-width {
14
+ @apply max-w-full;
16
15
  }
17
16
  .govgr-main-wrapper {
18
17
  @apply grid py-4 md:grid-cols-3 md:gap-12 grid-cols-1 gap-y-16
@@ -49,7 +48,7 @@
49
48
  @apply m-auto px-4 py-2 border-0 w-full bg-transparent;
50
49
  }
51
50
  .govgr-section-break--visible {
52
- @apply border-t border-base-300 border-solid ;
51
+ @apply border-t border-base-300 border-solid;
53
52
  }
54
53
  .govgr-section-break--md {
55
54
  @apply mb-5;
@@ -1,7 +1,7 @@
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
  }
@@ -20,7 +20,7 @@
20
20
  stroke-dashoffset: 0;
21
21
  animation: dash 4s ease-in-out 0s forwards infinite;
22
22
  }
23
- .govgr-loader--inverse {
23
+ .govgr-circular-progress--secondary {
24
24
  .govgr-loader__circle--1 {
25
25
  @apply opacity-40;
26
26
  stroke: var(--color-white);
@@ -32,7 +32,7 @@
32
32
  }
33
33
  @media print {
34
34
  .govgr-btn {
35
- .govgr-loader--inverse {
35
+ .govgr-circular-progress--secondary {
36
36
  .govgr-loader__circle--1,
37
37
  .govgr-loader__circle--2 {
38
38
  stroke: var(--color-base-content);
@@ -41,13 +41,13 @@
41
41
  }
42
42
  }
43
43
 
44
- .govgr-loader--sm {
44
+ .govgr-circular-progress--sm {
45
45
  @apply h-5 w-5;
46
46
  }
47
- .govgr-loader--md {
47
+ .govgr-circular-progress--md {
48
48
  @apply h-10 w-10;
49
49
  }
50
- .govgr-loader--lg {
50
+ .govgr-circular-progress--lg {
51
51
  @apply h-12 w-12;
52
52
  }
53
53
  @keyframes dash {
@@ -16,9 +16,6 @@
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
  }
@@ -4,7 +4,7 @@
4
4
  fill: var(--color-white);
5
5
  @apply float-right focus:bg-focus;
6
6
  }
7
- .govgr-drawer__close-icon {
7
+ .govgr-close-btn {
8
8
  @apply sm:hidden;
9
9
  .govgr-svg-icon--close {
10
10
  fill: var(--color-link) !important;
@@ -83,7 +83,7 @@
83
83
  .govgr-nav__list-item {
84
84
  @apply sm:gap-x-6;
85
85
  }
86
- .govgr-drawer__close-icon {
86
+ .govgr-close-btn {
87
87
  @apply sm:hidden mt-3;
88
88
  }
89
89
  .govgr-heading-md {
@@ -99,7 +99,7 @@
99
99
  @apply w-full m-0 max-w-5xl static xs:px-3
100
100
  flex flex-wrap flex-col;
101
101
  }
102
- .govgr-drawer__close-icon {
102
+ .govgr-close-btn {
103
103
  @apply sm:hidden mt-3;
104
104
  }
105
105
  .govgr-heading-md {
@@ -172,7 +172,7 @@
172
172
  @apply flex flex-wrap;
173
173
  }
174
174
  .govgr-vertical-nav__item {
175
- @apply w-full p-2 !important;
175
+ @apply w-full py-2 !important;
176
176
  }
177
177
  .govgr-vertical-nav__item--active {
178
178
  @apply font-semibold !important;
@@ -1,13 +1,22 @@
1
1
  .govgr-notification-banner {
2
- @apply bg-info border-5 border-info mb-6 md:mb-8 font-normal
3
- print:bg-base-100;
2
+ @apply border-5 mb-6 md:mb-8 font-normal print:bg-white;
3
+ }
4
+ .govgr-notification-banner--info {
5
+ @apply bg-info border-info;
4
6
  }
5
7
  .govgr-notification-banner--success {
6
- @apply bg-success border-success
7
- print:bg-white;
8
+ @apply bg-success border-success;
8
9
  .govgr-notification-banner__link {
9
- &:link {
10
+ &:link:not(:focus) {
10
11
  @apply text-success;
12
+ }
13
+ }
14
+ }
15
+ .govgr-notification-banner--error {
16
+ @apply bg-error border-error;
17
+ .govgr-notification-banner__link {
18
+ &:link:not(:focus) {
19
+ @apply text-error;
11
20
  }
12
21
  }
13
22
  }
@@ -27,11 +36,8 @@
27
36
  @apply mb-0;
28
37
  }
29
38
  }
30
- .govgr-notification-banner__heading {
31
- @apply p-0 m-0 mb-4 text-lg md:text-2xl font-bold;
32
- }
33
39
  .govgr-notification-banner__link {
34
- @apply underline;
40
+ @apply underline text-base md:text-lg;
35
41
  &:link {
36
42
  @apply text-link;
37
43
  }
@@ -45,3 +51,8 @@
45
51
  outline: none;
46
52
  }
47
53
  }
54
+ .govgr-notification-banner__heading {
55
+ .govgr-notification-banner__link {
56
+ font-size: inherit;
57
+ }
58
+ }
@@ -18,7 +18,7 @@
18
18
  }
19
19
  }
20
20
  }
21
- .govgr-pagination--size-sm {
21
+ .govgr-pagination--sm {
22
22
  .govgr-pagination__label, .govgr-label, .govgr-select, .govgr-pagination__item--current {
23
23
  @apply md:text-base text-sm;
24
24
  }
@@ -1,10 +1,10 @@
1
1
  .govgr-panel {
2
2
  @apply box-border mb-4 p-8 border-5 border-transparent text-center
3
- print:p-4;
3
+ print:p-4 text-white
4
+ print:border-4 print:text-base-content print:bg-white;
4
5
  }
5
- .govgr-panel--confirmation {
6
- @apply bg-success text-white
7
- print:border-4 print:border-success print:text-base-content print:bg-white;
6
+ .govgr-panel--success {
7
+ @apply bg-success print:border-success;
8
8
  }
9
9
  .govgr-panel__title {
10
10
  @apply mx-auto mt-0;
@@ -1,4 +1,4 @@
1
- .govgr-phase-banner_header {
1
+ .govgr-phase-banner__header {
2
2
  @apply bg-focus top-0 z-30
3
3
  print:bg-white print:border-focus print:border-2 print:px-4;
4
4
  .govgr-phase-banner {
@@ -3,14 +3,10 @@
3
3
  @apply block relative mb-4 pl-12;
4
4
  min-height: 40px;
5
5
  }
6
- .govgr-radios--inline {
7
- .govgr-radios__item {
8
- @apply sm:mr-6 sm:float-left sm:clear-none;
9
- }
10
- &::after {
11
- content: "";
12
- display: block;
13
- clear: both;
6
+ .govgr-radios--horizontal {
7
+ @apply inline-flex flex-wrap items-baseline gap-4 md:gap-6;
8
+ .govgr-choice-divider-text {
9
+ @apply min-w-max mx-2;
14
10
  }
15
11
  }
16
12
  .govgr-radios__item {
@@ -0,0 +1,66 @@
1
+ .govgr-stack {
2
+ @apply flex flex-col flex-wrap;
3
+ }
4
+ .govgr-stack--row {
5
+ @apply flex-row;
6
+ }
7
+ .govgr-stack--reverse-row {
8
+ @apply flex-row-reverse;
9
+ }
10
+ .govgr-stack--col-reverse {
11
+ @apply flex-col-reverse;
12
+ }
13
+ .govgr-stack--nowrap {
14
+ @apply flex-nowrap
15
+ }
16
+ .govgr-stack--justify-flex-start {
17
+ @apply justify-start
18
+ }
19
+ .govgr-stack--justify-flex-end {
20
+ @apply justify-end
21
+ }
22
+ .govgr-stack--justify-center {
23
+ @apply justify-center
24
+ }
25
+ .govgr-stack--justify-space-between {
26
+ @apply justify-between
27
+ }
28
+ .govgr-stack--justify-space-around {
29
+ @apply justify-around
30
+ }
31
+ .govgr-stack--justify-space-evenly {
32
+ @apply justify-evenly
33
+ }
34
+ .govgr-stack--align-stretch {
35
+ @apply items-stretch
36
+ }
37
+ .govgr-stack--align-flex-start {
38
+ @apply items-start
39
+ }
40
+ .govgr-stack--align-flex-end {
41
+ @apply items-end
42
+ }
43
+ .govgr-stack--align-center {
44
+ @apply items-center
45
+ }
46
+ .govgr-stack--align-baseline {
47
+ @apply items-baseline
48
+ }
49
+ .govgr-stack--content-flex-start {
50
+ @apply content-start
51
+ }
52
+ .govgr-stack--content-flex-end {
53
+ @apply content-end
54
+ }
55
+ .govgr-stack--content-center {
56
+ @apply content-center
57
+ }
58
+ .govgr-stack--content-space-between {
59
+ @apply content-between
60
+ }
61
+ .govgr-stack--content-space-around {
62
+ @apply content-around
63
+ }
64
+ .govgr-stack--content-space-evenly {
65
+ @apply content-evenly
66
+ }
@@ -39,6 +39,14 @@
39
39
  &:first-child {
40
40
  @apply border-t-2;
41
41
  }
42
+ .govgr-step-nav__accordion__opened {
43
+ visibility: hidden;
44
+ display: none;
45
+ }
46
+ .govgr-step-nav__accordion__closed {
47
+ visibility: visible;
48
+ display: block;
49
+ }
42
50
  }
43
51
  .govgr-step-nav__accordion[open] {
44
52
 
@@ -50,10 +58,8 @@
50
58
  visibility: hidden;
51
59
  display: none;
52
60
  }
53
- .govgr-nav-step__accordion__content {
54
- @apply block;
55
- }
56
61
  }
62
+
57
63
  .govgr-step-nav__accordion__summary {
58
64
  @apply list-none w-fit mb-0 py-4 pr-8 cursor-pointer;
59
65
  .govgr-hint {
@@ -136,7 +142,7 @@
136
142
  0 0.1em 0 var(--color-white), -0.1em 0 0 var(--color-white);
137
143
  }
138
144
  .govgr-nav-step__accordion__content {
139
- @apply hidden md:pt-2 mb-6 pt-1 mx-0;
145
+ @apply md:pt-2 mb-6 pt-1 mx-0;
140
146
  > *:last-child {
141
147
  @apply mb-0;
142
148
  }
@@ -70,7 +70,7 @@
70
70
  .govgr-table__row {
71
71
  @apply bg-base-100;
72
72
  }
73
- .govgr-table__row--warning {
73
+ .govgr-table__row--highlight {
74
74
  @apply border-l-4 border-warning;
75
75
  .govgr-table__cell:first-child {
76
76
  @apply pl-2;
@@ -211,6 +211,14 @@
211
211
  }
212
212
  }
213
213
  }
214
+ .govgr-table:not(.govgr-table--zebra) {
215
+ .govgr-table__row--secondary {
216
+ @apply bg-base-200 print:bg-white;
217
+ }
218
+ }
219
+ .govgr-table__cell--bold {
220
+ @apply font-semibold;
221
+ }
214
222
  .govgr-table__body {
215
223
  @apply relative;
216
224
  }
@@ -227,14 +235,8 @@
227
235
  .govgr-table__row {
228
236
  @apply bg-base-100;
229
237
  }
230
- .govgr-table__row--warning {
231
- @apply border-l-4 border-warning;
232
- .govgr-table__cell:first-child {
233
- @apply pl-2;
234
- }
235
- }
236
238
  .govgr-table__header {
237
- .govgr-dropdown__button {
239
+ .govgr-dropdown__button:not(:focus) {
238
240
  @apply no-underline font-bold text-base-content !important;
239
241
  }
240
242
  .govgr-dropdown__button--underline:not(:focus) {
@@ -33,13 +33,12 @@
33
33
  .govgr-task-list__content__tag {
34
34
  @apply px-2 py-1 mr-2 inline-block font-sans text-sm uppercase tracking-widest;
35
35
  }
36
- .govgr-task-list__content__tag--primary {
36
+ .govgr-task-list__content__tag--info {
37
37
  @apply bg-info text-white print:border-2 print:bg-white print:border-info-hover print:text-info-hover print:mr-4;
38
38
  }
39
- .govgr-task-list__content__tag--secondary {
39
+ .govgr-task-list__content__tag--primary {
40
40
  @apply bg-secondary text-base-content print:border-2 print:bg-white print:border-info print:text-info print:mr-4;
41
41
  }
42
- .govgr-task-list__content__tag--gray {
42
+ .govgr-task-list__content__tag--secondary {
43
43
  @apply bg-base-300 print:border-2 print:bg-white print:border-base-800 print:text-base-800 print:mr-4;
44
44
  }
45
- .govgr-tag {}
@@ -30,6 +30,14 @@
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);
@@ -130,6 +138,14 @@
130
138
  @apply gap-x-10 gap-y-5;
131
139
  }
132
140
  }
141
+ @media (min-width: 768px) {
142
+ .govgr-list--col-2 {
143
+ column-count: 2;
144
+ }
145
+ .govgr-list--col-3 {
146
+ column-count: 2;
147
+ }
148
+ }
133
149
  .govgr-list, .govgr-blockquote {
134
150
  @apply md:mb-8 mb-4 text-base-content;
135
151
  }
@@ -191,10 +207,10 @@
191
207
  }
192
208
  }
193
209
  .govgr-header {
194
- .govgr-header__container > .govgr-link {
210
+ .govgr-header__content > .govgr-link {
195
211
  @apply text-white focus:text-link-active print:text-base-content;
196
212
  }
197
- .govgr-header__content > .govgr-link {
213
+ .govgr-header__section > .govgr-link {
198
214
  @apply text-white focus:text-link-active print:text-base-content;
199
215
  }
200
216
  }
@@ -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>
@@ -228,11 +228,11 @@ export default function Dropdown() {
228
228
  <hr className="govgr-section-break govgr-section-break--lg" />
229
229
 
230
230
  <footer className="govgr-footer" role="contentinfo">
231
- <div className="govgr-width-container">
231
+ <div className="govgr-container">
232
232
  <div className="govgr-footer__meta">
233
233
  <div className="govgr-footer__meta-item govgr-footer__meta-item--grow">
234
234
  <div className="govgr-footer__content">
235
- <p className="govgr-footer__licence-description">
235
+ <p className="govgr-footer__copyright">
236
236
  Υλοποίηση από το <a href="https://mindigital.gr/" target="_blank" rel="noreferrer noopener" className="govgr-link"> Υπουργείο Ψηφιακής Διακυβέρνησης <span className="govgr-visually-hidden">(ανοίγει σε καινούρια καρτέλα) </span></a>
237
237
  </p>
238
238
  </div>
package/src/pages/form.js CHANGED
@@ -26,7 +26,7 @@ export default function Home() {
26
26
  <a className="govgr-nav__list-item-link" href=""> Επικοινωνία </a>
27
27
  </ul>
28
28
  </nav>
29
- <div className="govgr-width-container">
29
+ <div className="govgr-container">
30
30
  <div className="govgr-main-wrapper">
31
31
  <div className="govgr-grid-column-two-thirds">
32
32
  <h1 className="govgr-heading-xl">Καταχώρηση φόρμας</h1>
@@ -34,7 +34,7 @@ export default function Home() {
34
34
 
35
35
 
36
36
  <div className="govgr-masthead govgr-background-dark">
37
- <div className="govgr-width-container">
37
+ <div className="govgr-container">
38
38
  <div className="govgr-main-wrapper">
39
39
  <div className="govgr-grid-column-two-thirds">
40
40
  <img className="govgr-masthead__logo" src="https://dilosi.services.gov.gr/minedu-logo.svg" alt="minedu logo" />
@@ -53,7 +53,7 @@ export default function Home() {
53
53
  </div>
54
54
  </div>
55
55
 
56
- <div className="govgr-width-container">
56
+ <div className="govgr-container">
57
57
  <div className="govgr-main-wrapper">
58
58
  <div className="govgr-grid-column-two-thirds">
59
59
 
@@ -136,12 +136,14 @@ export default function Home() {
136
136
  Η διαδικασία έκδοσης του διαβατηρίου σας μπορεί να διαρκέσει εώς 10 μέρες, εφόσον η αίτηση σας δεν έχει λάθη.
137
137
  </blockquote>
138
138
 
139
- <div className="govgr-error-summary">
140
- <h3 className="govgr-heading-sm">Υπήρξε κάποιο πρόβλημα</h3>
141
- <a className="govgr-link" href="#"> Πρέπει να συμπληρώσετε το έτος</a>
139
+ <div class="govgr-notification-banner govgr-notification-banner--error">
140
+ <div class="govgr-notification-banner__content">
141
+ <h3 className="govgr-heading-sm">Υπήρξε κάποιο πρόβλημα</h3>
142
+ <a className="govgr-link" href="#"> Πρέπει να συμπληρώσετε το έτος</a>
143
+ </div>
142
144
  </div>
143
145
 
144
- <div className="govgr-panel govgr-panel--confirmation">
146
+ <div className="govgr-panel">
145
147
  <h1 className="govgr-panel__title">Η φόρμα υποβλήθηκε επιτυχώς</h1>
146
148
  <div className="govgr-panel__body">
147
149
  Ο κωδικός εγγράφου <br />
@@ -322,11 +324,11 @@ export default function Home() {
322
324
  </div>
323
325
 
324
326
  <footer className="govgr-footer" role="contentinfo">
325
- <div className="govgr-width-container">
327
+ <div className="govgr-container">
326
328
  <div className="govgr-footer__meta">
327
329
  <div className="govgr-footer__meta-item govgr-footer__meta-item--grow">
328
330
  <div className="govgr-footer__content">
329
- <p className="govgr-footer__licence-description">
331
+ <p className="govgr-footer__copyright">
330
332
  Υλοποίηση από το <a href="https://mindigital.gr/" target="_blank" rel="noreferrer noopener" className="govgr-link"> Υπουργείο Ψηφιακής Διακυβέρνησης <span className="govgr-visually-hidden">(ανοίγει σε καινούρια καρτέλα) </span></a>
331
333
  </p>
332
334
  </div>
@@ -339,7 +341,7 @@ export default function Home() {
339
341
  </footer>
340
342
 
341
343
  <footer className="govgr-footer" role="contentinfo">
342
- <div className="govgr-width-container">
344
+ <div className="govgr-container">
343
345
  <div className="govgr-footer__navigation">
344
346
  <div className="govgr-footer__section">
345
347
  <h2 className="govgr-footer__heading govgr-heading-sm">Λίστα δύο στηλών</h2>
@@ -399,7 +401,7 @@ export default function Home() {
399
401
  <img className="govgr-footer__logo" src="/img/government-logo2.svg" alt="government logo" />
400
402
  <img className="govgr-footer__logo" src="/img/government-logo2.svg" alt="government logo" />
401
403
  </div>
402
- <p className="govgr-footer__licence-description">
404
+ <p className="govgr-footer__copyright">
403
405
  Υλοποίηση από το <a href="https://mindigital.gr/" target="_blank" rel="noreferrer noopener" className="govgr-footer__link"> Υπουργείο Ψηφιακής Διακυβέρνησης <span className="govgr-visually-hidden">(ανοίγει σε καινούρια καρτέλα)</span></a>
404
406
  </p>
405
407
  </div>
@@ -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,25 @@
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
465
  }