mirror of
https://github.com/BillyOutlast/posthog.git
synced 2026-02-04 03:01:23 +01:00
23 lines
600 B
CSS
23 lines
600 B
CSS
@import 'tailwindcss';
|
|
|
|
/* if this shows a warning, change the type of file in vscode to 'tailwind CSS' */
|
|
@config "./tailwind.config.js";
|
|
|
|
@theme {
|
|
--text-xxs: 0.625rem;
|
|
--text-xxs--line-height: 0.75rem;
|
|
|
|
--spacing-button-padding-x: 7px; /* Match the padding of the button primitives base size (6px) + 1px border */
|
|
|
|
--animate-input-focus-pulse: inputFocusPulse 1s ease-in-out forwards;
|
|
|
|
@keyframes inputFocusPulse {
|
|
0% {
|
|
box-shadow: 0 0 0px 2px var(--color-accent);
|
|
}
|
|
100% {
|
|
box-shadow: 0 0 0px 2px transparent;
|
|
}
|
|
}
|
|
}
|