@digigov/css 1.0.0-3bfc7d37 → 1.0.0-47312a12

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@digigov/css",
3
- "version": "1.0.0-3bfc7d37",
3
+ "version": "1.0.0-47312a12",
4
4
  "description": "Digigov CSS - Tailwind CSS Components",
5
5
  "author": "GRNET Devs <devs@lists.grnet.gr>",
6
6
  "license": "BSD-2-Clause",
@@ -48,12 +48,11 @@
48
48
  "tailwindcss": "3.3.5",
49
49
  "nodemon": "2.0.7",
50
50
  "next": "10.0.9",
51
- "@digigov/postcss-banner": "1.0.0-3bfc7d37",
51
+ "@digigov/postcss-banner": "1.0.0-47312a12",
52
+ "@digigov/cli-build-tailwind": "1.0.0-47312a12",
52
53
  "rimraf": "3.0.2",
53
- "postcss-js": "4.0.0",
54
- "postcss-load-config": "3.1.4",
55
54
  "publint": "0.1.8",
56
- "@digigov/cli": "1.0.0-3bfc7d37"
55
+ "@digigov/cli": "1.0.0-47312a12"
57
56
  },
58
57
  "scripts": {
59
58
  "preutilities": "DIGIGOV_CSS_BUILD=TRUE postcss --config src/utilities src/utilities/index.css --base src --dir dist",
@@ -73,10 +72,10 @@
73
72
  },
74
73
  "dependencies": {
75
74
  "@fontsource/roboto": "4.4.0",
76
- "@digigov/cli-build-tailwind": "1.0.0-3bfc7d37",
77
75
  "publint": "0.1.8",
78
76
  "@adobe/leonardo-contrast-colors": "1.0.0-alpha.13",
79
- "polished": "4.2.2"
77
+ "polished": "4.2.2",
78
+ "postcss-js": "4.0.0",
79
+ "postcss-load-config": "3.1.4"
80
80
  }
81
81
  }
82
-
@@ -5,6 +5,7 @@
5
5
  }
6
6
  html{
7
7
  -webkit-tap-highlight-color: transparent;
8
+ scroll-behavior: smooth;
8
9
  }
9
10
  body {
10
11
  @apply font-sans text-base-content bg-base-100;
@@ -46,7 +46,7 @@
46
46
  @apply text-base-content focus:underline flex justify-between;
47
47
  &::after {
48
48
  content: "+";
49
- @apply text-2xl text-base-content float-right relative -right-8;
49
+ @apply text-2xl text-base-content float-right relative -right-8 ml-2;
50
50
  }
51
51
  }
52
52
  .govgr-accordion__section[open] {
@@ -0,0 +1,29 @@
1
+ .govgr-back-to-top-content {
2
+
3
+ }
4
+
5
+ .govgr-back-to-top-link {
6
+ font-size: var(--back-to-top-link-font-size);
7
+ letter-spacing: var(--back-to-top-link-letter-spacing);
8
+ color: var(--back-to-top-link-color);
9
+ @apply w-fit underline flex mb-4 cursor-pointer items-baseline;
10
+ &:hover {
11
+ text-decoration-thickness: 2px;
12
+ }
13
+ &:focus {
14
+ background-color: var(--color-focus);
15
+ box-shadow:
16
+ 0 -2px var(--color-focus),
17
+ 0 4px var(--color-base-content);
18
+ text-decoration: none;
19
+ outline: none;
20
+ }
21
+ }
22
+
23
+ /* overrides */
24
+
25
+ .govgr-back-to-top-link {
26
+ .govgr-svg-icon {
27
+ fill: var(--back-to-top-link-color);
28
+ }
29
+ }
@@ -1,4 +1,7 @@
1
- .govgr-btn {
1
+ .govgr-btn,
2
+ .govgr-btn[type=submit],
3
+ .govgr-btn[type=button],
4
+ .govgr-btn[type=reset] {
2
5
  @apply no-underline font-medium cursor-pointer
3
6
  m-0 mb-8 w-max min-h-10 md:min-h-12
4
7
  flex gap-x-3 items-center;
@@ -15,8 +18,22 @@
15
18
  &:focus-within {
16
19
  @apply outline-none;
17
20
  }
21
+ &.govgr-btn--dense,
22
+ .govgr-dense & {
23
+ --btn-padding: 0.375rem 0.75rem;
24
+ @apply min-h-8;
25
+ &:focus {
26
+ -webkit-box-shadow: 0 0 0 2px var(--color-white),
27
+ 0 0 0 5px var(--color-base-content), 0 0 0 8px var(--color-focus);
28
+ box-shadow: 0 0 0 2px var(--color-white),
29
+ 0 0 0 5px var(--color-base-content), 0 0 0 8px var(--color-focus);
30
+ }
31
+ }
18
32
  }
19
- .govgr-btn-primary {
33
+ .govgr-btn-primary,
34
+ .govgr-btn-primary[type="submit"],
35
+ .govgr-btn-primary[type="button"],
36
+ .govgr-btn-primary[type="reset"] {
20
37
  -webkit-box-shadow: 0 2px 0 var(--color-base-content);
21
38
  box-shadow: 0 2px 0 var(--color-base-content);
22
39
  background-color: var(--btn-primary-background-color);
@@ -35,7 +52,10 @@
35
52
  @apply py-4 print:pr-2;
36
53
  font-size: var(--btn-cta-font-size);
37
54
  }
38
- .govgr-btn-secondary {
55
+ .govgr-btn-secondary,
56
+ .govgr-btn-secondary[type="submit"],
57
+ .govgr-btn-secondary[type="button"],
58
+ .govgr-btn-secondary[type="reset"] {
39
59
  -webkit-box-shadow: 0 2px 0 var(--color-base-500);
40
60
  box-shadow: 0 2px 0 var(--color-base-500);
41
61
  @apply hover:no-underline
@@ -50,7 +70,10 @@
50
70
  background-color: var(--btn-secondary-background-color-active);
51
71
  }
52
72
  }
53
- .govgr-btn-warning {
73
+ .govgr-btn-warning,
74
+ .govgr-btn-warning[type="submit"],
75
+ .govgr-btn-warning[type="button"],
76
+ .govgr-btn-warning[type="reset"] {
54
77
  -webkit-box-shadow: 0 2px 0 var(--color-base-content);
55
78
  box-shadow: 0 2px 0 var(--color-base-content);
56
79
  @apply hover:no-underline
@@ -96,11 +119,11 @@
96
119
  }
97
120
  }
98
121
  .govgr-btn-cta {
99
- .govgr-svg-icon--arrow {
122
+ .govgr-svg-icon--chevron {
100
123
  @apply w-5 h-5 inline-block ml-2 mr-2 transition-all;
101
124
  }
102
125
  &:hover {
103
- .govgr-svg-icon--arrow {
126
+ .govgr-svg-icon--chevron {
104
127
  @apply ml-4 mr-0;
105
128
  }
106
129
  }
@@ -1,13 +1,43 @@
1
- .govgr-checkboxes {}
1
+ .govgr-checkboxes {
2
+ &.govgr-checkboxes--dense,
3
+ .govgr-dense & {
4
+ .govgr-checkboxes__item {
5
+ @apply mb-2 pl-10 min-h-8;
6
+ &:last-child {
7
+ @apply mb-0;
8
+ }
9
+ }
10
+ .govgr-checkboxes__input {
11
+ @apply w-8 h-8 left-0.5 md:top-0.5;
12
+ &:before {
13
+ @apply w-8 h-8;
14
+ }
15
+ &:after {
16
+ top: 10px;
17
+ left: 7px;
18
+ width: 19px;
19
+ height: 10px;
20
+ @apply border-b-4 border-l-4;
21
+ }
22
+ &:focus {
23
+ &:before {
24
+ @apply border-3;
25
+ }
26
+ }
27
+ }
28
+ .govgr-field {
29
+ @apply mb-4 md:mb-6;
30
+ }
31
+ }
32
+ }
2
33
  .govgr-checkboxes--horizontal {
3
- @apply inline-flex flex-wrap items-baseline gap-4 md:gap-6;
34
+ @apply inline-flex flex-wrap items-baseline gap-4 md:gap-6;
4
35
  }
5
36
  .govgr-checkboxes__item {
6
- @apply block relative mb-4 pl-12;
7
- min-height: 40px;
8
- &:last-child {
9
- @apply mb-0;
10
- }
37
+ @apply block relative mb-4 pl-12 min-h-10;
38
+ &:last-child {
39
+ @apply mb-0;
40
+ }
11
41
  }
12
42
  .govgr-checkboxes__label {
13
43
  @apply inline-block py-1 px-2 cursor-pointer;
@@ -47,15 +77,23 @@
47
77
  @apply border-4;
48
78
  }
49
79
  }
50
- }
80
+ }
51
81
  .govgr-checkboxes__conditional {
52
- @apply border-l-4 border-base-500 ml-4 pl-6;
82
+ @apply border-l-4 border-base-500 ml-4 pl-6;
53
83
  }
54
84
 
55
85
  /* overrides */
56
86
 
57
87
  .govgr-checkboxes--horizontal {
58
- .govgr-choice-divider-text {
59
- @apply min-w-max mx-2;
88
+ .govgr-choice-divider-text {
89
+ @apply min-w-max mx-2;
90
+ }
91
+ }
92
+ .govgr-checkboxes {
93
+ &.govgr-checkboxes--dense,
94
+ .govgr-dense & {
95
+ .govgr-field {
96
+ @apply mb-4 md:mb-6;
60
97
  }
98
+ }
61
99
  }
@@ -4,7 +4,7 @@
4
4
  .govgr-copy-to-clipboard__tooltip {
5
5
  @apply relative;
6
6
  .govgr-copy-to-clipboard__message {
7
- @apply bg-success p-4 absolute mt-4 text-center z-50 w-fit md:w-max;
7
+ @apply bg-success py-4 px-6 absolute mt-4 text-center z-50 w-fit md:w-max;
8
8
  &::before {
9
9
  content: "";
10
10
  @apply w-4 h-4 border-t-8 border-l-8 border-success transform rotate-45
@@ -12,10 +12,13 @@
12
12
  transform: rotate(45deg);
13
13
  }
14
14
  }
15
- }
16
- .govgr-copy-to-clipboard__banner {
17
- .govgr-copy-to-clipboard__message {
18
- @apply bg-success bg-opacity-95 p-2 w-full fixed top-0 right-0 text-center;
15
+ &.govgr-copy-to-clipboard__tooltip--dense, .govgr-dense & {
16
+ .govgr-copy-to-clipboard__message {
17
+ @apply py-2 px-4;
18
+ }
19
+ &::before {
20
+ @apply w-2 h-2;
21
+ }
19
22
  }
20
23
  }
21
24
  .govgr-copy-to-clipboard__tooltip--right {
@@ -36,6 +39,11 @@
36
39
  }
37
40
  }
38
41
  }
42
+ .govgr-copy-to-clipboard__banner {
43
+ .govgr-copy-to-clipboard__message {
44
+ @apply bg-success bg-opacity-95 p-2 w-full fixed top-0 right-0 text-center;
45
+ }
46
+ }
39
47
 
40
48
  .govgr-copy-to-clipboard--hidden {
41
49
  @apply invisible w-0 h-0;
@@ -1,17 +1,17 @@
1
1
  .govgr-drawer {
2
2
  @apply border border-base-300 bg-base-100 p-4
3
- h-full max-h-screen min-h-screen overflow-y-scroll w-4/5 max-w-md
3
+ h-full max-h-screen min-h-screen overflow-y-scroll w-4/5 max-w-md flex flex-col
4
4
  fixed top-0 bottom-0 z-40;
5
5
  @apply shadow-thick !important;
6
6
  }
7
7
  .govgr-drawer--relative-sm {
8
- @apply sm:block sm:relative sm:w-full max-h-full shadow-thick sm:shadow-none !important;
8
+ @apply sm:relative sm:w-full max-h-full shadow-thick sm:shadow-none !important;
9
9
  }
10
10
  .govgr-drawer--relative-md {
11
- @apply md:block md:relative md:w-full max-h-full shadow-thick md:shadow-none !important;
11
+ @apply md:relative md:w-full max-h-full shadow-thick md:shadow-none !important;
12
12
  }
13
13
  .govgr-drawer--relative-lg {
14
- @apply lg:block lg:relative lg:w-full max-h-full shadow-thick lg:shadow-none !important;
14
+ @apply lg:relative lg:w-full max-h-full shadow-thick lg:shadow-none !important;
15
15
  }
16
16
  .govgr-drawer--right {
17
17
  @apply right-0;
@@ -19,8 +19,21 @@
19
19
  .govgr-drawer--left {
20
20
  @apply left-0;
21
21
  }
22
+ .govgr-drawer--bg-secondary {
23
+ @apply bg-base-200 border-0;
24
+ @apply shadow-xl !important;
25
+ }
22
26
  .govgr-drawer--closed {
23
27
  @apply hidden;
28
+ &.govgr-drawer--relative-sm {
29
+ @apply hidden sm:flex;
30
+ }
31
+ &.govgr-drawer--relative-md {
32
+ @apply hidden md:flex;
33
+ }
34
+ &.govgr-drawer--relative-lg {
35
+ @apply hidden lg:flex;
36
+ }
24
37
  }
25
38
  .govgr-drawer__heading {
26
39
  @apply p-0 mb-4 flex justify-between align-baseline;
@@ -31,6 +44,11 @@
31
44
 
32
45
  /* overrides */
33
46
 
47
+ .govgr-drawer {
48
+ > .govgr-container {
49
+ @apply p-0;
50
+ }
51
+ }
34
52
  .govgr-drawer__heading {
35
53
  .govgr-heading-xs,
36
54
  .govgr-heading-sm,
@@ -40,3 +58,25 @@
40
58
  @apply m-0;
41
59
  }
42
60
  }
61
+ .govgr-drawer--relative-sm {
62
+ .govgr-drawer__heading {
63
+ >.govgr-close-btn {
64
+ @apply sm:hidden;
65
+ }
66
+ }
67
+ }
68
+ .govgr-drawer--relative-md {
69
+ .govgr-drawer__heading {
70
+ >.govgr-close-btn {
71
+ @apply md:hidden;
72
+ }
73
+ }
74
+ }
75
+ .govgr-drawer--relative-lg {
76
+ .govgr-drawer__heading {
77
+ >.govgr-close-btn {
78
+ @apply lg:hidden;
79
+ }
80
+ }
81
+ }
82
+
@@ -1,57 +1,71 @@
1
1
  .govgr-dropdown {
2
2
  @apply w-fit relative;
3
- }
4
- .govgr-dropdown--up {
5
- .govgr-dropdown__content {
6
- @apply mb-4 border border-b-0 bottom-full;
7
- -webkit-box-box-shadow: 0 2px 8px rgba(var(--color-base-900-rgb), 0.3), 0 2px 0 var(--color-base-500);
8
- box-shadow: 0 2px 8px rgba(var(--color-base-900-rgb), 0.3), 0 2px 0 var(--color-base-500);
3
+ &.govgr-dropdown--up {
4
+ .govgr-dropdown__content {
5
+ @apply mb-4 border border-b-0 bottom-full;
6
+ -webkit-box-box-shadow:
7
+ 0 2px 8px rgba(var(--color-base-900-rgb), 0.3),
8
+ 0 2px 0 var(--color-base-500);
9
+ box-shadow:
10
+ 0 2px 8px rgba(var(--color-base-900-rgb), 0.3),
11
+ 0 2px 0 var(--color-base-500);
12
+ }
9
13
  }
10
- }
11
- .govgr-dropdown--right {
12
- .govgr-dropdown__content {
13
- @apply right-0 mr-0 ml-4;
14
+ &.govgr-dropdown--right {
15
+ .govgr-dropdown__content {
16
+ @apply right-0 mr-0 ml-4;
17
+ }
18
+ }
19
+ &.govgr-dropdown--disabled {
20
+ @apply cursor-not-allowed;
21
+ .govgr-dropdown__button {
22
+ pointer-events: none;
23
+ user-select: none;
24
+ opacity: 0.5;
25
+ }
26
+ }
27
+ &.govgr-dropdown--dense,
28
+ .govgr-dense & {
29
+ .govgr-dropdown__content {
30
+ @apply p-2;
31
+ }
14
32
  }
15
- }
16
- .govgr-dropdown--disabled {
17
- @apply cursor-not-allowed;
18
33
  .govgr-dropdown__button {
19
- pointer-events: none;
20
- user-select: none;
21
- opacity: 0.5;
34
+ @apply w-fit print:text-base-content;
35
+ &::marker {
36
+ font-size: 0px;
37
+ }
22
38
  }
23
- }
24
- .govgr-dropdown__button {
25
- @apply w-fit print:text-base-content;
26
- &::marker {
27
- font-size: 0px;
39
+ .govgr-dropdown__button.govgr-link + .govgr-dropdown__content {
40
+ @apply mt-4 print:text-base-content;
28
41
  }
29
- }
30
- .govgr-dropdown__button.govgr-link + .govgr-dropdown__content {
31
- @apply mt-4 print:text-base-content;
32
- }
33
- .govgr-btn-group .govgr-btn + .govgr-dropdown__content {
34
- @apply mt-4;
35
- }
36
- .govgr-dropdown__content {
37
- @apply border border-base-400 p-4 bg-base-100 border-t-0
38
- max-w-xs w-max min-w-full absolute transition z-3 mr-4 -mt-4;
39
- -webkit-box-box-shadow: 0 2px 8px rgba(var(--color-base-900-rgb), 0.3), 0 -2px 0 var(--color-base-500);
40
- box-shadow: 0 2px 8px rgba(var(--color-base-900-rgb), 0.3), 0 -2px 0 var(--color-base-500);
41
- *:last-child {
42
- @apply mb-0;
42
+ .govgr-btn-group .govgr-btn + .govgr-dropdown__content {
43
+ @apply mt-4;
44
+ }
45
+ .govgr-dropdown__content {
46
+ @apply border border-base-400 p-4 bg-base-100 border-t-0
47
+ max-w-xs w-max min-w-full absolute transition z-3 mr-4 -mt-4;
48
+ -webkit-box-box-shadow:
49
+ 0 2px 8px rgba(var(--color-base-900-rgb), 0.3),
50
+ 0 -2px 0 var(--color-base-500);
51
+ box-shadow:
52
+ 0 2px 8px rgba(var(--color-base-900-rgb), 0.3),
53
+ 0 -2px 0 var(--color-base-500);
54
+ *:last-child {
55
+ @apply mb-0;
56
+ }
57
+ }
58
+ .govgr-dropdown__content--full-width {
59
+ @apply min-w-full;
43
60
  }
44
- }
45
- .govgr-dropdown__content--full-width {
46
- @apply min-w-full;
47
61
  }
48
62
 
49
63
  /* overrides */
50
64
 
51
65
  .govgr-dropdown {
52
66
  &[open] {
53
- .govgr-dropdown__button--arrow {
54
- .govgr-svg-icon--arrow {
67
+ .govgr-dropdown__button--chevron {
68
+ .govgr-svg-icon--chevron {
55
69
  @apply transform -rotate-180;
56
70
  }
57
71
  }
@@ -59,7 +73,7 @@
59
73
  &.govgr-btn-primary {
60
74
  background-color: var(--btn-primary-background-color-hover);
61
75
  color: var(--btn-primary-color-hover);
62
- }
76
+ }
63
77
  &.govgr-btn-secondary {
64
78
  background-color: var(--btn-secondary-background-color-hover);
65
79
  color: var(--btn-secondary-color-hover);
@@ -70,37 +84,48 @@
70
84
  }
71
85
  }
72
86
  }
73
- .govgr-dropdown__button--arrow {
74
- .govgr-svg-icon--arrow {
87
+ .govgr-dropdown__button--chevron {
88
+ .govgr-svg-icon--chevron {
75
89
  @apply transition duration-300;
76
90
  }
77
91
  }
78
- }
79
- .govgr-dropdown__button {
80
- .govgr-svg-icon {
81
- @apply w-5 h-6 md:h-8;
82
- @apply print:hidden;
83
- }
84
- &.govgr-link {
85
- @apply inline-flex gap-1 items-center;
86
- }
87
- }
88
- .govgr-dropdown__content {
89
- .govgr-field {
90
- @apply mb-4;
92
+ .govgr-dropdown__button {
93
+ .govgr-svg-icon {
94
+ @apply w-5 h-6 md:h-8;
95
+ @apply print:hidden;
96
+ }
97
+ &.govgr-link {
98
+ @apply inline-flex gap-1 items-center;
99
+ }
91
100
  }
92
- .govgr-section-break {
93
- @apply -mx-4 w-auto;
101
+ .govgr-dropdown__content {
102
+ .govgr-field {
103
+ @apply mb-4;
104
+ }
105
+ .govgr-section-break {
106
+ @apply -mx-4 w-auto;
107
+ }
108
+ > .govgr-nav__list {
109
+ @apply w-auto -mx-4 flex-col;
110
+ .govgr-nav__list-item {
111
+ @apply border-b border-base-300 py-2 px-4;
112
+ &:last-child {
113
+ @apply border-0;
114
+ }
115
+ &:focus {
116
+ @apply border-focus;
117
+ }
118
+ }
119
+ }
94
120
  }
95
- >.govgr-nav__list {
96
- @apply w-auto -mx-4 flex-col;
97
- .govgr-nav__list-item {
98
- @apply border-b border-base-300 py-2 px-4;
99
- &:last-child {
100
- @apply border-0;
121
+ &.govgr-dropdown--dense,
122
+ .govgr-dense & {
123
+ .govgr-dropdown__content {
124
+ .govgr-section-break {
125
+ @apply -mx-2 w-auto;
101
126
  }
102
- &:focus {
103
- @apply border-focus;
127
+ > .govgr-nav__list {
128
+ @apply w-auto -mx-2 flex-col;
104
129
  }
105
130
  }
106
131
  }
@@ -37,6 +37,17 @@
37
37
  box-shadow: inset 0 0 0 2px;
38
38
  }
39
39
  }
40
+ .govgr-input--dense,.govgr-dense .govgr-input ,
41
+ .govgr-textarea--dense, .govgr-dense .govgr-textarea ,
42
+ .govgr-select--dense, .govgr-dense .govgr-select,
43
+ .govgr-date-input--dense .govgr-input, .govgr-dense .govgr-date-input .govgr-input
44
+ {
45
+ @apply p-1;
46
+ &:focus {
47
+ -webkit-box-shadow: inset 0 0 0 1px;
48
+ box-shadow: inset 0 0 0 1px;
49
+ }
50
+ }
40
51
  .govgr-label-file {
41
52
  @apply mb-0;
42
53
  }
@@ -46,7 +57,14 @@
46
57
  .govgr-uploaded-file {
47
58
  @apply flex flex-wrap gap-x-4 mb-0;
48
59
  }
49
- .govgr-date-input,
60
+ .govgr-date-input {
61
+ @apply flex flex-wrap gap-y-2;
62
+ &.govgr-date-input--dense, .govgr-dense & {
63
+ .govgr-date-input__item {
64
+ @apply mr-2;
65
+ }
66
+ }
67
+ }
50
68
  .govgr-single-character-input {
51
69
  @apply flex flex-wrap gap-y-2;
52
70
  }
@@ -13,7 +13,7 @@
13
13
  .govgr-header__logo {
14
14
  print-color-adjust: exact !important;
15
15
  -webkit-print-color-adjust: exact !important;
16
- @apply h-12 print:hidden;
16
+ @apply max-h-12 print:hidden;
17
17
  }
18
18
  .govgr-header__logo-inverted {
19
19
  @apply h-12 hidden print:block;
@@ -50,7 +50,8 @@
50
50
  .govgr-header {
51
51
  .govgr-header__content,
52
52
  .govgr-header__section {
53
- > .govgr-link {
53
+ > .govgr-link,
54
+ > .govgr-dropdown .govgr-dropdown__button.govgr-link {
54
55
  @apply text-white focus:text-link-active print:text-base-content;
55
56
  }
56
57
  }
@@ -60,9 +61,6 @@
60
61
  .govgr-dropdown__button {
61
62
  @apply sm:w-max;
62
63
  }
63
- .govgr-dropdown__button.govgr-link {
64
- @apply text-lg text-white focus:text-base-content print:text-base-800;
65
- }
66
64
  .govgr-link {
67
65
  .govgr-svg-icon {
68
66
  fill: var(--color-white);
@@ -1,4 +1,3 @@
1
- @import "./accessibility-menu.css";
2
1
  @import "./accordion.css";
3
2
  @import "./autocomplete.css";
4
3
  @import "./button.css";
@@ -14,6 +13,7 @@
14
13
  @import "./layout.css";
15
14
  @import "./nav.css";
16
15
  @import "./typography.css";
16
+ @import "./back-to-top.css";
17
17
  @import "./table.css";
18
18
  @import "./filter.css";
19
19
  @import "./admin-layout.css";