open-webui/src/tailwind.css

41 lines
941 B
CSS
Raw Normal View History

2025-02-16 03:27:25 +00:00
@import 'tailwindcss';
@config '../tailwind.config.js';
/*
The default border color has changed to `currentColor` in Tailwind CSS v4,
so we've added these compatibility styles to make sure everything still
looks the same as it did with Tailwind CSS v3.
If we ever want to remove these styles, we need to add an explicit border
color utility to any element that depends on these defaults.
*/
@layer base {
*,
::after,
::before,
::backdrop,
::file-selector-button {
border-color: var(--color-gray-200, currentColor);
}
}
2023-10-08 22:38:42 +00:00
@layer base {
2024-03-31 09:01:42 +00:00
html,
pre {
2024-07-08 19:05:16 +00:00
font-family: -apple-system, BlinkMacSystemFont, 'Inter', ui-sans-serif, system-ui, 'Segoe UI',
Roboto, Ubuntu, Cantarell, 'Noto Sans', sans-serif, 'Helvetica Neue', Arial,
'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Noto Color Emoji';
2024-03-12 10:08:03 +00:00
}
2023-10-08 22:38:42 +00:00
2024-03-31 09:01:42 +00:00
pre {
white-space: pre-wrap;
}
2025-02-16 03:27:25 +00:00
button {
@apply cursor-pointer;
}
2023-10-08 22:38:42 +00:00
}
2025-02-18 17:54:31 +00:00
@custom-variant hover (&:hover);