@umami/react-zen 0.3.0 → 0.5.0

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.
@@ -141,6 +141,7 @@
141
141
  background: var(--background-color);
142
142
  border: var(--border);
143
143
  border-radius: var(--border-radius);
144
+ outline: none;
144
145
  }
145
146
  .Dialog_title {
146
147
  font-size: var(--font-size-lg);
@@ -148,6 +149,68 @@
148
149
  margin-bottom: var(--spacing-3);
149
150
  }
150
151
 
152
+ /* src/components/Box.module.css */
153
+ .Box_font-size-xs {
154
+ font-size: var(--font-size-xs);
155
+ }
156
+ .Box_font-size-sm {
157
+ font-size: var(--font-size-sm);
158
+ }
159
+ .Box_font-size-md {
160
+ font-size: var(--font-size-md);
161
+ }
162
+ .Box_font-size-lg {
163
+ font-size: var(--font-size-lg);
164
+ }
165
+ .Box_font-size-xl {
166
+ font-size: var(--font-size-xl);
167
+ }
168
+ .Box_border-radius-sm {
169
+ border-radius: var(--border-radius-sm);
170
+ }
171
+ .Box_border-radius-md {
172
+ border-radius: var(--border-radius-md);
173
+ }
174
+ .Box_border-radius-lg {
175
+ border-radius: var(--border-radius-lg);
176
+ }
177
+ .Box_border-radius-full {
178
+ border-radius: 100%;
179
+ }
180
+ .Box_gap-xs {
181
+ gap: var(--gap-xs);
182
+ }
183
+ .Box_gap-sm {
184
+ gap: var(--gap-sm);
185
+ }
186
+ .Box_gap-md {
187
+ gap: var(--gap-md);
188
+ }
189
+ .Box_gap-lg {
190
+ gap: var(--gap-lg);
191
+ }
192
+ .Box_gap-xl {
193
+ gap: var(--gap-xl);
194
+ }
195
+ .Box_shadow-1 {
196
+ box-shadow: var(--box-shadow-1);
197
+ }
198
+ .Box_shadow-2 {
199
+ box-shadow: var(--box-shadow-2);
200
+ }
201
+ .Box_shadow-3 {
202
+ box-shadow: var(--box-shadow-3);
203
+ }
204
+ .Box_shadow-4 {
205
+ box-shadow: var(--box-shadow-4);
206
+ }
207
+ .Box_shadow-5 {
208
+ box-shadow: var(--box-shadow-5);
209
+ }
210
+ .Box_shadow-6 {
211
+ box-shadow: var(--box-shadow-6);
212
+ }
213
+
151
214
  /* src/components/Flexbox.module.css */
152
215
  .Flexbox_flexbox {
153
216
  display: flex;
@@ -516,6 +579,10 @@
516
579
  font-size: 1.1rem;
517
580
  padding: 1rem 1.25rem;
518
581
  }
582
+ .Button_button.Button_xl {
583
+ font-size: 1.3rem;
584
+ padding: 1.25rem 1.5rem;
585
+ }
519
586
  .Button_button a {
520
587
  color: inherit;
521
588
  }
@@ -799,6 +866,7 @@
799
866
  padding: var(--padding);
800
867
  line-height: 1.5rem;
801
868
  flex: 1;
869
+ outline: none;
802
870
  }
803
871
  .Field_input::placeholder {
804
872
  color: var(--font-muted-color);
@@ -1143,6 +1211,7 @@
1143
1211
  border-radius: var(--border-radius);
1144
1212
  gap: var(--gap);
1145
1213
  cursor: pointer;
1214
+ outline: none;
1146
1215
  }
1147
1216
  .MenuItem_item:hover {
1148
1217
  background: var(--highlight-bg-color);