mirror of
https://github.com/jlengrand/bugsink.git
synced 2026-03-10 08:01:17 +00:00
tailwind: add dark-mode default for border color
Enhance the border-color patch by adding a dark-mode default (slate-800).
This commit is contained in:
2
theme/static/css/dist/styles.css
vendored
2
theme/static/css/dist/styles.css
vendored
File diff suppressed because one or more lines are too long
@@ -1,10 +1,13 @@
|
||||
@config "../tailwind.config.js";
|
||||
@import "tailwindcss";
|
||||
|
||||
/* Preserve Tailwind 3 behavior: default border color was gray.200 */
|
||||
/* Preserve Tailwind 3 behavior: default border color was gray.200
|
||||
the dark-mode stuff is actually an improvement over our previous design @tailwind 3 that we simply added
|
||||
because we were in the process of fixing borders globally anyway */
|
||||
|
||||
@layer base {
|
||||
*, ::before, ::after {
|
||||
border-color: theme('colors.gray.200');
|
||||
@apply border-gray-200 dark:border-slate-800;
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user