|
171 | 171 | .pointer-events-none { |
172 | 172 | pointer-events: none; |
173 | 173 | } |
| 174 | + .invisible { |
| 175 | + visibility: hidden; |
| 176 | + } |
174 | 177 | .fixed { |
175 | 178 | position: fixed; |
176 | 179 | } |
|
210 | 213 | .mt-0 { |
211 | 214 | margin-top: calc(0.25rem * 0); |
212 | 215 | } |
| 216 | + .mr-1 { |
| 217 | + margin-right: calc(0.25rem * 1); |
| 218 | + } |
213 | 219 | .mr-3 { |
214 | 220 | margin-right: calc(0.25rem * 3); |
215 | 221 | } |
|
247 | 253 | .h-1\.5 { |
248 | 254 | height: calc(0.25rem * 1.5); |
249 | 255 | } |
| 256 | + .h-2 { |
| 257 | + height: calc(0.25rem * 2); |
| 258 | + } |
250 | 259 | .h-4 { |
251 | 260 | height: calc(0.25rem * 4); |
252 | 261 | } |
253 | 262 | .h-90 { |
254 | 263 | height: calc(0.25rem * 90); |
255 | 264 | } |
| 265 | + .h-full { |
| 266 | + height: 100%; |
| 267 | + } |
256 | 268 | .min-h-screen { |
257 | 269 | min-height: 100vh; |
258 | 270 | } |
259 | 271 | .w-4 { |
260 | 272 | width: calc(0.25rem * 4); |
261 | 273 | } |
| 274 | + .w-12 { |
| 275 | + width: calc(0.25rem * 12); |
| 276 | + } |
262 | 277 | .w-16 { |
263 | 278 | width: calc(0.25rem * 16); |
264 | 279 | } |
|
295 | 310 | .rotate-180 { |
296 | 311 | rotate: 180deg; |
297 | 312 | } |
| 313 | + .animate-spin { |
| 314 | + animation: spin 1s linear infinite; |
| 315 | + } |
298 | 316 | .cursor-pointer { |
299 | 317 | cursor: pointer; |
300 | 318 | } |
|
554 | 572 | --tw-font-weight: 700; |
555 | 573 | font-weight: 700; |
556 | 574 | } |
| 575 | + .font-medium { |
| 576 | + --tw-font-weight: 500; |
| 577 | + font-weight: 500; |
| 578 | + } |
557 | 579 | .font-semibold { |
558 | 580 | --tw-font-weight: 600; |
559 | 581 | font-weight: 600; |
|
621 | 643 | .opacity-0 { |
622 | 644 | opacity: 0%; |
623 | 645 | } |
| 646 | + .opacity-25 { |
| 647 | + opacity: 25%; |
| 648 | + } |
624 | 649 | .opacity-30 { |
625 | 650 | opacity: 30%; |
626 | 651 | } |
| 652 | + .opacity-75 { |
| 653 | + opacity: 75%; |
| 654 | + } |
627 | 655 | .shadow-lg { |
628 | 656 | --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1)); |
629 | 657 | box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow); |
|
642 | 670 | transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1)); |
643 | 671 | transition-duration: var(--tw-duration, 150ms); |
644 | 672 | } |
| 673 | + .transition-transform { |
| 674 | + transition-property: transform, translate, scale, rotate; |
| 675 | + transition-timing-function: var(--tw-ease, cubic-bezier(0.4, 0, 0.2, 1)); |
| 676 | + transition-duration: var(--tw-duration, 150ms); |
| 677 | + } |
645 | 678 | .duration-300 { |
646 | 679 | --tw-duration: 300ms; |
647 | 680 | transition-duration: 300ms; |
|
1017 | 1050 | background-color: oklch(27.8% 0.033 256.848); |
1018 | 1051 | } |
1019 | 1052 | } |
| 1053 | + .dark\:bg-gray-800\/50 { |
| 1054 | + &:where(.dark, .dark *) { |
| 1055 | + background-color: color-mix(in oklab, oklch(27.8% 0.033 256.848) 50%, transparent); |
| 1056 | + } |
| 1057 | + } |
1020 | 1058 | .dark\:bg-gray-900 { |
1021 | 1059 | &:where(.dark, .dark *) { |
1022 | 1060 | background-color: oklch(21% 0.034 264.665); |
|
1597 | 1635 | syntax: "*"; |
1598 | 1636 | inherits: false; |
1599 | 1637 | } |
| 1638 | +@keyframes spin { |
| 1639 | + to { |
| 1640 | + transform: rotate(360deg); |
| 1641 | + } |
| 1642 | +} |
| 1643 | +@keyframes spin { |
| 1644 | + to { |
| 1645 | + transform: rotate(360deg); |
| 1646 | + } |
| 1647 | +} |
1600 | 1648 | @layer properties { |
1601 | 1649 | @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) { |
1602 | 1650 | *, ::before, ::after, ::backdrop { |
|
0 commit comments