|
37 | 37 | --text-xs--line-height: calc(1 / 0.75); |
38 | 38 | --text-sm: 0.875rem; |
39 | 39 | --text-sm--line-height: calc(1.25 / 0.875); |
| 40 | + --text-base: 1rem; |
| 41 | + --text-base--line-height: calc(1.5 / 1); |
40 | 42 | --text-lg: 1.125rem; |
41 | 43 | --text-lg--line-height: calc(1.75 / 1.125); |
42 | 44 | --text-xl: 1.25rem; |
|
228 | 230 | .static { |
229 | 231 | position: static; |
230 | 232 | } |
| 233 | + .top-2 { |
| 234 | + top: calc(var(--spacing) * 2); |
| 235 | + } |
231 | 236 | .right-2 { |
232 | 237 | right: calc(var(--spacing) * 2); |
233 | 238 | } |
|
237 | 242 | .left-2 { |
238 | 243 | left: calc(var(--spacing) * 2); |
239 | 244 | } |
| 245 | + .z-10 { |
| 246 | + z-index: 10; |
| 247 | + } |
240 | 248 | .mt-0\.5 { |
241 | 249 | margin-top: calc(var(--spacing) * 0.5); |
242 | 250 | } |
|
264 | 272 | .inline { |
265 | 273 | display: inline; |
266 | 274 | } |
| 275 | + .h-6 { |
| 276 | + height: calc(var(--spacing) * 6); |
| 277 | + } |
267 | 278 | .h-8 { |
268 | 279 | height: calc(var(--spacing) * 8); |
269 | 280 | } |
|
273 | 284 | .min-h-screen { |
274 | 285 | min-height: 100vh; |
275 | 286 | } |
| 287 | + .w-6 { |
| 288 | + width: calc(var(--spacing) * 6); |
| 289 | + } |
276 | 290 | .w-8 { |
277 | 291 | width: calc(var(--spacing) * 8); |
278 | 292 | } |
|
306 | 320 | .grid-cols-2 { |
307 | 321 | grid-template-columns: repeat(2, minmax(0, 1fr)); |
308 | 322 | } |
| 323 | + .flex-col { |
| 324 | + flex-direction: column; |
| 325 | + } |
309 | 326 | .flex-wrap { |
310 | 327 | flex-wrap: wrap; |
311 | 328 | } |
|
371 | 388 | .rounded-xl { |
372 | 389 | border-radius: var(--radius-xl); |
373 | 390 | } |
| 391 | + .rounded-t-xl { |
| 392 | + border-top-left-radius: var(--radius-xl); |
| 393 | + border-top-right-radius: var(--radius-xl); |
| 394 | + } |
| 395 | + .rounded-b-none { |
| 396 | + border-bottom-right-radius: 0; |
| 397 | + border-bottom-left-radius: 0; |
| 398 | + } |
| 399 | + .rounded-b-xl { |
| 400 | + border-bottom-right-radius: var(--radius-xl); |
| 401 | + border-bottom-left-radius: var(--radius-xl); |
| 402 | + } |
374 | 403 | .border { |
375 | 404 | border-style: var(--tw-border-style); |
376 | 405 | border-width: 1px; |
377 | 406 | } |
| 407 | + .border-x { |
| 408 | + border-inline-style: var(--tw-border-style); |
| 409 | + border-inline-width: 1px; |
| 410 | + } |
378 | 411 | .border-t { |
379 | 412 | border-top-style: var(--tw-border-style); |
380 | 413 | border-top-width: 1px; |
381 | 414 | } |
| 415 | + .border-b { |
| 416 | + border-bottom-style: var(--tw-border-style); |
| 417 | + border-bottom-width: 1px; |
| 418 | + } |
382 | 419 | .border-slate-700 { |
383 | 420 | border-color: var(--color-slate-700); |
384 | 421 | } |
|
448 | 485 | .py-0\.5 { |
449 | 486 | padding-block: calc(var(--spacing) * 0.5); |
450 | 487 | } |
| 488 | + .py-1\.5 { |
| 489 | + padding-block: calc(var(--spacing) * 1.5); |
| 490 | + } |
451 | 491 | .py-2 { |
452 | 492 | padding-block: calc(var(--spacing) * 2); |
453 | 493 | } |
|
457 | 497 | .text-center { |
458 | 498 | text-align: center; |
459 | 499 | } |
| 500 | + .text-right { |
| 501 | + text-align: right; |
| 502 | + } |
460 | 503 | .font-mono { |
461 | 504 | font-family: var(--font-mono); |
462 | 505 | } |
463 | 506 | .text-2xl { |
464 | 507 | font-size: var(--text-2xl); |
465 | 508 | line-height: var(--tw-leading, var(--text-2xl--line-height)); |
466 | 509 | } |
| 510 | + .text-base { |
| 511 | + font-size: var(--text-base); |
| 512 | + line-height: var(--tw-leading, var(--text-base--line-height)); |
| 513 | + } |
467 | 514 | .text-lg { |
468 | 515 | font-size: var(--text-lg); |
469 | 516 | line-height: var(--tw-leading, var(--text-lg--line-height)); |
|
622 | 669 | background-color: var(--color-emerald-600); |
623 | 670 | } |
624 | 671 | } |
| 672 | + .sm\:h-8 { |
| 673 | + @media (width >= 40rem) { |
| 674 | + height: calc(var(--spacing) * 8); |
| 675 | + } |
| 676 | + } |
| 677 | + .sm\:text-xl { |
| 678 | + @media (width >= 40rem) { |
| 679 | + font-size: var(--text-xl); |
| 680 | + line-height: var(--tw-leading, var(--text-xl--line-height)); |
| 681 | + } |
| 682 | + } |
625 | 683 | } |
626 | 684 | @property --tw-space-y-reverse { |
627 | 685 | syntax: "*"; |
|
0 commit comments