@abstraks-dev/ui-library 1.1.6 → 1.1.8

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 (73) hide show
  1. package/dist/components/Error.js +1 -1
  2. package/dist/components/Form.js +1 -1
  3. package/dist/components/Header.js +3 -2
  4. package/dist/components/Prompt.js +1 -1
  5. package/dist/styles/anchor.css +147 -0
  6. package/dist/styles/anchor.css.map +1 -0
  7. package/dist/styles/animation-accessibility.css +90 -0
  8. package/dist/styles/animation-accessibility.css.map +1 -0
  9. package/dist/styles/animation-toggle.css +223 -0
  10. package/dist/styles/animation-toggle.css.map +1 -0
  11. package/dist/styles/animation.css +3772 -0
  12. package/dist/styles/animation.css.map +1 -0
  13. package/dist/styles/avatar.css +349 -0
  14. package/dist/styles/avatar.css.map +1 -0
  15. package/dist/styles/button.css +491 -0
  16. package/dist/styles/button.css.map +1 -0
  17. package/dist/styles/card.css +306 -0
  18. package/dist/styles/card.css.map +1 -0
  19. package/dist/styles/checkbox.css +233 -0
  20. package/dist/styles/checkbox.css.map +1 -0
  21. package/dist/styles/crud.css +525 -0
  22. package/dist/styles/crud.css.map +1 -0
  23. package/dist/styles/dragAndDrop.css +400 -0
  24. package/dist/styles/dragAndDrop.css.map +1 -0
  25. package/dist/styles/error.css +311 -0
  26. package/dist/styles/error.css.map +1 -0
  27. package/dist/styles/footer.css +165 -0
  28. package/dist/styles/footer.css.map +1 -0
  29. package/dist/styles/form.css +492 -0
  30. package/dist/styles/form.css.map +1 -0
  31. package/dist/styles/grid.css +28 -0
  32. package/dist/styles/grid.css.map +1 -0
  33. package/dist/styles/header.css +345 -0
  34. package/dist/styles/header.css.map +1 -0
  35. package/dist/styles/heading.css +242 -0
  36. package/dist/styles/heading.css.map +1 -0
  37. package/dist/styles/hero.css +293 -0
  38. package/dist/styles/hero.css.map +1 -0
  39. package/dist/styles/htmlElements.css +129 -0
  40. package/dist/styles/htmlElements.css.map +1 -0
  41. package/dist/styles/image.css +10 -0
  42. package/dist/styles/image.css.map +1 -0
  43. package/dist/styles/label.css +407 -0
  44. package/dist/styles/label.css.map +1 -0
  45. package/dist/styles/list-item.css +6 -0
  46. package/dist/styles/list-item.css.map +1 -0
  47. package/dist/styles/loader.css +419 -0
  48. package/dist/styles/loader.css.map +1 -0
  49. package/dist/styles/logo.css +19 -0
  50. package/dist/styles/logo.css.map +1 -0
  51. package/dist/styles/menu-hover.css +142 -0
  52. package/dist/styles/menu-hover.css.map +1 -0
  53. package/dist/styles/paragraph.css +200 -0
  54. package/dist/styles/paragraph.css.map +1 -0
  55. package/dist/styles/prompt.css +168 -0
  56. package/dist/styles/prompt.css.map +1 -0
  57. package/dist/styles/radio.css +259 -0
  58. package/dist/styles/radio.css.map +1 -0
  59. package/dist/styles/select.css +403 -0
  60. package/dist/styles/select.css.map +1 -0
  61. package/dist/styles/side-menu.css +413 -0
  62. package/dist/styles/side-menu.css.map +1 -0
  63. package/dist/styles/tabs.css +562 -0
  64. package/dist/styles/tabs.css.map +1 -0
  65. package/dist/styles/text-area.css +451 -0
  66. package/dist/styles/text-area.css.map +1 -0
  67. package/dist/styles/text-input.css +243 -0
  68. package/dist/styles/text-input.css.map +1 -0
  69. package/dist/styles/toggle.css +3 -0
  70. package/dist/styles/toggle.css.map +1 -0
  71. package/dist/styles/unordered-list.css +9 -0
  72. package/dist/styles/unordered-list.css.map +1 -0
  73. package/package.json +4 -3
@@ -0,0 +1,293 @@
1
+ :root {
2
+ --small: (min-width: 607px);
3
+ --medium: (min-width: 768px);
4
+ --large: (min-width: 992px);
5
+ --xlarge: (min-width: 1200px);
6
+ --color-primary: #009900;
7
+ --color-primary-hover: rgba(1, 116, 1, 0.9);
8
+ --color-secondary: #7086f1;
9
+ --color-secondary-hover: rgba(83, 100, 185, 0.9);
10
+ --color-warning: #ff9800;
11
+ --color-warning-hover: rgba(214, 130, 4, 0.9);
12
+ --color-success: #57f500;
13
+ --color-success-hover: rgba(74, 207, 2, 0.9);
14
+ --color-error: #f44336;
15
+ --color-error-hover: rgba(216, 58, 47, 0.9);
16
+ --color-shade: rgba(0, 0, 0, 0.5);
17
+ --color-tint: rgba(250, 250, 250, 0.5);
18
+ --color-white: #fff;
19
+ --color-black: #000;
20
+ --color-font-body: #333;
21
+ --color-black-alpha: rgba(0, 0, 0, 0.6);
22
+ --focus-color: #4d90fe;
23
+ --shadow-primary: rgba(0, 153, 0, 0.2);
24
+ --shadow-primary-hover: rgba(0, 153, 0, 0.3);
25
+ --shadow-primary-strong: rgba(0, 153, 0, 0.4);
26
+ --shadow-primary-strongest: rgba(0, 153, 0, 0.5);
27
+ --shadow-secondary: rgba(112, 134, 241, 0.2);
28
+ --shadow-secondary-hover: rgba(112, 134, 241, 0.3);
29
+ --shadow-secondary-strong: rgba(112, 134, 241, 0.4);
30
+ --shadow-secondary-strongest: rgba(112, 134, 241, 0.5);
31
+ --shadow-success: rgba(87, 245, 0, 0.2);
32
+ --shadow-success-hover: rgba(87, 245, 0, 0.3);
33
+ --shadow-success-strong: rgba(87, 245, 0, 0.4);
34
+ --shadow-success-strongest: rgba(87, 245, 0, 0.5);
35
+ --shadow-error: rgba(244, 67, 54, 0.2);
36
+ --shadow-error-hover: rgba(244, 67, 54, 0.3);
37
+ --shadow-error-strong: rgba(244, 67, 54, 0.4);
38
+ --shadow-error-strongest: rgba(244, 67, 54, 0.5);
39
+ --shadow-warning: rgba(255, 152, 0, 0.2);
40
+ --shadow-warning-hover: rgba(255, 152, 0, 0.3);
41
+ --shadow-warning-strong: rgba(255, 152, 0, 0.4);
42
+ --shadow-warning-strongest: rgba(255, 152, 0, 0.5);
43
+ --border-radius-xs: 4px;
44
+ --border-radius-sm: 4px;
45
+ --border-radius-md: 6px;
46
+ --border-radius-lg: 8px;
47
+ --border-radius-xl: 10px;
48
+ --z-index-base: 1;
49
+ --z-index-low: 10;
50
+ --z-index-dropdown: 100;
51
+ --z-index-sticky: 200;
52
+ --z-index-popover: 300;
53
+ --z-index-tooltip: 400;
54
+ --z-index-overlay: 1000;
55
+ --z-index-modal: 1010;
56
+ --z-index-notification: 1020;
57
+ --gray-100: #f8f9fa;
58
+ --gray-200: #e9ecef;
59
+ --gray-300: #dee2e6;
60
+ --gray-400: #ced4da;
61
+ --gray-500: #adb5bd;
62
+ --gray-600: #6c757d;
63
+ --gray-700: #495057;
64
+ --gray-800: #343a40;
65
+ --gray-900: #212529;
66
+ --black: #000;
67
+ --color-muted-blue: #8793ab;
68
+ --heading-one: 2.5rem;
69
+ --heading-two: 2rem;
70
+ --heading-three: 1.75rem;
71
+ --heading-four: 1.5rem;
72
+ --heading-five: 1.25rem;
73
+ --heading-six: 1rem;
74
+ --font-family-body: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
75
+ --font-size-xs: 0.75rem;
76
+ --font-size-sm: 0.875rem;
77
+ --font-size-base: 1rem;
78
+ --font-size-lg: 1.125rem;
79
+ --font-size-xl: 1.25rem;
80
+ --line-height-tight: 1.25;
81
+ --line-height-base: 1.5;
82
+ --line-height-relaxed: 1.625;
83
+ --font-weight-light: 300;
84
+ --font-weight-normal: 400;
85
+ --font-weight-medium: 500;
86
+ --font-weight-semibold: 600;
87
+ --font-weight-bold: 700;
88
+ --spacing-xs: 0.25rem;
89
+ --spacing-sm: 0.5rem;
90
+ --spacing-md: 1rem;
91
+ --spacing-lg: 1.5rem;
92
+ --spacing-xl: 2rem;
93
+ --spacing-2xl: 3rem;
94
+ --text-color: #1f2937;
95
+ --text-muted: #6b7280;
96
+ --background-color: #ffffff;
97
+ --border-color: #d1d5db;
98
+ --border-color-hover: #9ca3af;
99
+ --error-text: #dc2626;
100
+ --error-background: #fef2f2;
101
+ --error-border: #fecaca;
102
+ --success-text: #059669;
103
+ --success-background: #f0fdf4;
104
+ --success-border: #bbf7d0;
105
+ --warning-text: #d97706;
106
+ --warning-background: #fffbeb;
107
+ --warning-border: #fed7aa;
108
+ --primary-color: #3b82f6;
109
+ --focus-ring-color: #3b82f6;
110
+ --border-radius: 0.375rem;
111
+ }
112
+
113
+ html,
114
+ body,
115
+ .root,
116
+ #root {
117
+ height: 100%;
118
+ }
119
+
120
+ .sb-show-main.sb-main-padded {
121
+ padding: 0;
122
+ }
123
+
124
+ .hero-wrapper {
125
+ position: relative;
126
+ height: 100vh;
127
+ min-height: 400px;
128
+ background-position: center;
129
+ background-repeat: no-repeat;
130
+ background-size: cover;
131
+ background-attachment: fixed;
132
+ display: flex;
133
+ align-items: center;
134
+ justify-content: center;
135
+ overflow: hidden;
136
+ }
137
+ @media (min-width: 768px) {
138
+ .hero-wrapper {
139
+ min-height: 500px;
140
+ background-attachment: scroll;
141
+ }
142
+ }
143
+ @media (min-width: 992px) {
144
+ .hero-wrapper {
145
+ min-height: 600px;
146
+ background-attachment: fixed;
147
+ }
148
+ }
149
+ @media (min-width: 1200px) {
150
+ .hero-wrapper {
151
+ min-height: 70vh;
152
+ }
153
+ }
154
+ .hero-wrapper.hero--overlay-light::before {
155
+ content: "";
156
+ position: absolute;
157
+ top: 0;
158
+ left: 0;
159
+ right: 0;
160
+ bottom: 0;
161
+ background: rgba(0, 0, 0, 0.2);
162
+ z-index: 1;
163
+ }
164
+ .hero-wrapper.hero--overlay-medium::before {
165
+ content: "";
166
+ position: absolute;
167
+ top: 0;
168
+ left: 0;
169
+ right: 0;
170
+ bottom: 0;
171
+ background: rgba(0, 0, 0, 0.4);
172
+ z-index: 1;
173
+ }
174
+ .hero-wrapper.hero--overlay-dark::before {
175
+ content: "";
176
+ position: absolute;
177
+ top: 0;
178
+ left: 0;
179
+ right: 0;
180
+ bottom: 0;
181
+ background: rgba(0, 0, 0, 0.6);
182
+ z-index: 1;
183
+ }
184
+ @media (prefers-contrast: high) {
185
+ .hero-wrapper::before {
186
+ background: rgba(0, 0, 0, 0.8) !important;
187
+ }
188
+ }
189
+ @media (prefers-reduced-motion: reduce) {
190
+ .hero-wrapper {
191
+ background-attachment: scroll !important;
192
+ }
193
+ }
194
+
195
+ .hero {
196
+ position: relative;
197
+ z-index: calc(1 + 1);
198
+ width: 100%;
199
+ max-width: 1200px;
200
+ padding: 2rem 1rem;
201
+ text-align: center;
202
+ color: #fff;
203
+ }
204
+ @media (min-width: 768px) {
205
+ .hero {
206
+ padding: 3rem 2rem;
207
+ }
208
+ }
209
+ @media (min-width: 992px) {
210
+ .hero {
211
+ padding: 4rem 3rem;
212
+ }
213
+ }
214
+ @media (min-width: 1200px) {
215
+ .hero {
216
+ padding: 5rem 4rem;
217
+ }
218
+ }
219
+ .hero h1,
220
+ .hero h2,
221
+ .hero h3,
222
+ .hero h4,
223
+ .hero h5,
224
+ .hero h6 {
225
+ margin-bottom: 1rem;
226
+ text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
227
+ }
228
+ @media (min-width: 768px) {
229
+ .hero h1,
230
+ .hero h2,
231
+ .hero h3,
232
+ .hero h4,
233
+ .hero h5,
234
+ .hero h6 {
235
+ margin-bottom: 1.5rem;
236
+ }
237
+ }
238
+ .hero p {
239
+ font-size: 1.1rem;
240
+ line-height: 1.6;
241
+ text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
242
+ }
243
+ @media (min-width: 768px) {
244
+ .hero p {
245
+ font-size: 1.25rem;
246
+ line-height: 1.7;
247
+ }
248
+ }
249
+ @media (min-width: 992px) {
250
+ .hero p {
251
+ font-size: 1.375rem;
252
+ }
253
+ }
254
+ .hero:focus-visible {
255
+ outline: 3px solid #009900;
256
+ outline-offset: 2px;
257
+ }
258
+ @media (prefers-contrast: high) {
259
+ .hero h1,
260
+ .hero h2,
261
+ .hero h3,
262
+ .hero h4,
263
+ .hero h5,
264
+ .hero h6,
265
+ .hero p {
266
+ text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.9);
267
+ }
268
+ }
269
+
270
+ .hero__overlay {
271
+ position: absolute;
272
+ top: 0;
273
+ left: 0;
274
+ right: 0;
275
+ bottom: 0;
276
+ background: rgba(0, 0, 0, 0.4);
277
+ z-index: 1;
278
+ pointer-events: none;
279
+ }
280
+
281
+ .sr-only {
282
+ position: absolute !important;
283
+ width: 1px !important;
284
+ height: 1px !important;
285
+ padding: 0 !important;
286
+ margin: -1px !important;
287
+ overflow: hidden !important;
288
+ clip: rect(0, 0, 0, 0) !important;
289
+ white-space: nowrap !important;
290
+ border: 0 !important;
291
+ }
292
+
293
+ /*# sourceMappingURL=hero.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../src/styles/_variables.scss","../../src/styles/hero.scss"],"names":[],"mappings":"AA2RA;EAJE;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;;ACrRF;AAAA;AAAA;AAAA;EAIC;;;AAGD;EACC;;;AAID;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;;AAGA;EAdD;IAeE;IACA;;;AAGD;EAnBD;IAoBE;IACA;;;AAGD;EAxBD;IAyBE;;;AAID;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA,SDkBa;;ACfd;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA,SDOa;;ACJd;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA,SDJa;;ACQd;EACC;IACC;;;AAKF;EAtED;IAuEE;;;;AAKF;EACC;EACA;EACA;EACA;EACA;EACA;EACA,ODxEa;;AC0Eb;EATD;IAUE;;;AAGD;EAbD;IAcE;;;AAGD;EAjBD;IAkBE;;;AAID;AAAA;AAAA;AAAA;AAAA;AAAA;EAMC;EACA;;AAEA;EATD;AAAA;AAAA;AAAA;AAAA;AAAA;IAUE;;;AAIF;EACC;EACA;EACA;;AAEA;EALD;IAME;IACA;;;AAGD;EAVD;IAWE;;;AAKF;EACC;EACA;;AAID;EACC;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;IAOC;;;;AAMH;EACC;EACA;EACA;EACA;EACA;EACA;EACA,SDpGc;ECqGd;;;AAID;EACC;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA","file":"hero.css"}
@@ -0,0 +1,129 @@
1
+ :root {
2
+ --small: (min-width: 607px);
3
+ --medium: (min-width: 768px);
4
+ --large: (min-width: 992px);
5
+ --xlarge: (min-width: 1200px);
6
+ --color-primary: #009900;
7
+ --color-primary-hover: rgba(1, 116, 1, 0.9);
8
+ --color-secondary: #7086f1;
9
+ --color-secondary-hover: rgba(83, 100, 185, 0.9);
10
+ --color-warning: #ff9800;
11
+ --color-warning-hover: rgba(214, 130, 4, 0.9);
12
+ --color-success: #57f500;
13
+ --color-success-hover: rgba(74, 207, 2, 0.9);
14
+ --color-error: #f44336;
15
+ --color-error-hover: rgba(216, 58, 47, 0.9);
16
+ --color-shade: rgba(0, 0, 0, 0.5);
17
+ --color-tint: rgba(250, 250, 250, 0.5);
18
+ --color-white: #fff;
19
+ --color-black: #000;
20
+ --color-font-body: #333;
21
+ --color-black-alpha: rgba(0, 0, 0, 0.6);
22
+ --focus-color: #4d90fe;
23
+ --shadow-primary: rgba(0, 153, 0, 0.2);
24
+ --shadow-primary-hover: rgba(0, 153, 0, 0.3);
25
+ --shadow-primary-strong: rgba(0, 153, 0, 0.4);
26
+ --shadow-primary-strongest: rgba(0, 153, 0, 0.5);
27
+ --shadow-secondary: rgba(112, 134, 241, 0.2);
28
+ --shadow-secondary-hover: rgba(112, 134, 241, 0.3);
29
+ --shadow-secondary-strong: rgba(112, 134, 241, 0.4);
30
+ --shadow-secondary-strongest: rgba(112, 134, 241, 0.5);
31
+ --shadow-success: rgba(87, 245, 0, 0.2);
32
+ --shadow-success-hover: rgba(87, 245, 0, 0.3);
33
+ --shadow-success-strong: rgba(87, 245, 0, 0.4);
34
+ --shadow-success-strongest: rgba(87, 245, 0, 0.5);
35
+ --shadow-error: rgba(244, 67, 54, 0.2);
36
+ --shadow-error-hover: rgba(244, 67, 54, 0.3);
37
+ --shadow-error-strong: rgba(244, 67, 54, 0.4);
38
+ --shadow-error-strongest: rgba(244, 67, 54, 0.5);
39
+ --shadow-warning: rgba(255, 152, 0, 0.2);
40
+ --shadow-warning-hover: rgba(255, 152, 0, 0.3);
41
+ --shadow-warning-strong: rgba(255, 152, 0, 0.4);
42
+ --shadow-warning-strongest: rgba(255, 152, 0, 0.5);
43
+ --border-radius-xs: 4px;
44
+ --border-radius-sm: 4px;
45
+ --border-radius-md: 6px;
46
+ --border-radius-lg: 8px;
47
+ --border-radius-xl: 10px;
48
+ --z-index-base: 1;
49
+ --z-index-low: 10;
50
+ --z-index-dropdown: 100;
51
+ --z-index-sticky: 200;
52
+ --z-index-popover: 300;
53
+ --z-index-tooltip: 400;
54
+ --z-index-overlay: 1000;
55
+ --z-index-modal: 1010;
56
+ --z-index-notification: 1020;
57
+ --gray-100: #f8f9fa;
58
+ --gray-200: #e9ecef;
59
+ --gray-300: #dee2e6;
60
+ --gray-400: #ced4da;
61
+ --gray-500: #adb5bd;
62
+ --gray-600: #6c757d;
63
+ --gray-700: #495057;
64
+ --gray-800: #343a40;
65
+ --gray-900: #212529;
66
+ --black: #000;
67
+ --color-muted-blue: #8793ab;
68
+ --heading-one: 2.5rem;
69
+ --heading-two: 2rem;
70
+ --heading-three: 1.75rem;
71
+ --heading-four: 1.5rem;
72
+ --heading-five: 1.25rem;
73
+ --heading-six: 1rem;
74
+ --font-family-body: Lato, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
75
+ --font-size-xs: 0.75rem;
76
+ --font-size-sm: 0.875rem;
77
+ --font-size-base: 1rem;
78
+ --font-size-lg: 1.125rem;
79
+ --font-size-xl: 1.25rem;
80
+ --line-height-tight: 1.25;
81
+ --line-height-base: 1.5;
82
+ --line-height-relaxed: 1.625;
83
+ --font-weight-light: 300;
84
+ --font-weight-normal: 400;
85
+ --font-weight-medium: 500;
86
+ --font-weight-semibold: 600;
87
+ --font-weight-bold: 700;
88
+ --spacing-xs: 0.25rem;
89
+ --spacing-sm: 0.5rem;
90
+ --spacing-md: 1rem;
91
+ --spacing-lg: 1.5rem;
92
+ --spacing-xl: 2rem;
93
+ --spacing-2xl: 3rem;
94
+ --text-color: #1f2937;
95
+ --text-muted: #6b7280;
96
+ --background-color: #ffffff;
97
+ --border-color: #d1d5db;
98
+ --border-color-hover: #9ca3af;
99
+ --error-text: #dc2626;
100
+ --error-background: #fef2f2;
101
+ --error-border: #fecaca;
102
+ --success-text: #059669;
103
+ --success-background: #f0fdf4;
104
+ --success-border: #bbf7d0;
105
+ --warning-text: #d97706;
106
+ --warning-background: #fffbeb;
107
+ --warning-border: #fed7aa;
108
+ --primary-color: #3b82f6;
109
+ --focus-ring-color: #3b82f6;
110
+ --border-radius: 0.375rem;
111
+ }
112
+
113
+ body {
114
+ font-family: "Lato", sans-serif;
115
+ color: #333;
116
+ }
117
+ body.scroll-locked {
118
+ overflow: hidden !important;
119
+ position: relative;
120
+ }
121
+ @media (max-width: 768px) {
122
+ body.scroll-locked {
123
+ position: fixed;
124
+ width: 100%;
125
+ top: 0;
126
+ }
127
+ }
128
+
129
+ /*# sourceMappingURL=htmlElements.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../src/styles/_variables.scss","../../src/styles/htmlElements.scss"],"names":[],"mappings":"AA2RA;EAJE;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;EAAA;;;ACrRF;EACC;EACA,ODuBiB;;ACpBjB;EACC;EAEA;;AAGA;EAND;IAOE;IACA;IACA","file":"htmlElements.css"}
@@ -0,0 +1,10 @@
1
+ .img {
2
+ display: flex;
3
+ max-width: 100%;
4
+ height: auto;
5
+ vertical-align: middle;
6
+ margin: 0 auto;
7
+ border: 0;
8
+ }
9
+
10
+ /*# sourceMappingURL=image.css.map */
@@ -0,0 +1 @@
1
+ {"version":3,"sourceRoot":"","sources":["../../src/styles/image.scss"],"names":[],"mappings":"AACA;EACC;EACA;EACA;EACA;EACA;EACA","file":"image.css"}