Openstatus
www.openstatus.dev
1@import 'tailwindcss';
2
3/*
4 The default border color has changed to `currentcolor` in Tailwind CSS v4,
5 so we've added these compatibility styles to make sure everything still
6 looks the same as it did with Tailwind CSS v3.
7
8 If we ever want to remove these styles, we need to add an explicit border
9 color utility to any element that depends on these defaults.
10*/
11@layer base {
12 *,
13 ::after,
14 ::before,
15 ::backdrop,
16 ::file-selector-button {
17 border-color: var(--color-gray-200, currentcolor);
18 }
19}