fix tailwindcss
Browse files- src/input.css +13 -27
src/input.css
CHANGED
@@ -1,3 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
:root {
|
2 |
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
3 |
line-height: 1.5;
|
@@ -13,15 +26,6 @@
|
|
13 |
-moz-osx-font-smoothing: grayscale;
|
14 |
}
|
15 |
|
16 |
-
a {
|
17 |
-
font-weight: 500;
|
18 |
-
color: #646cff;
|
19 |
-
text-decoration: inherit;
|
20 |
-
}
|
21 |
-
a:hover {
|
22 |
-
color: #535bf2;
|
23 |
-
}
|
24 |
-
|
25 |
body {
|
26 |
margin: 0;
|
27 |
display: flex;
|
@@ -30,11 +34,6 @@ body {
|
|
30 |
min-height: 100vh;
|
31 |
}
|
32 |
|
33 |
-
h1 {
|
34 |
-
font-size: 3.2em;
|
35 |
-
line-height: 1.1;
|
36 |
-
}
|
37 |
-
|
38 |
button {
|
39 |
border-radius: 8px;
|
40 |
border: 1px solid transparent;
|
@@ -53,16 +52,3 @@ button:focus,
|
|
53 |
button:focus-visible {
|
54 |
outline: 4px auto -webkit-focus-ring-color;
|
55 |
}
|
56 |
-
|
57 |
-
@media (prefers-color-scheme: light) {
|
58 |
-
:root {
|
59 |
-
color: #213547;
|
60 |
-
background-color: #ffffff;
|
61 |
-
}
|
62 |
-
a:hover {
|
63 |
-
color: #747bff;
|
64 |
-
}
|
65 |
-
button {
|
66 |
-
background-color: #f9f9f9;
|
67 |
-
}
|
68 |
-
}
|
|
|
1 |
+
@tailwind base;
|
2 |
+
@tailwind components;
|
3 |
+
@tailwind utilities;
|
4 |
+
|
5 |
+
|
6 |
+
@layer utilities {
|
7 |
+
.selected {
|
8 |
+
@apply border-b-primary border-b-2 border-solid text-primary;
|
9 |
+
/* border-r-0 border-l-0 border-t-0 */
|
10 |
+
}
|
11 |
+
}
|
12 |
+
|
13 |
+
|
14 |
:root {
|
15 |
font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
|
16 |
line-height: 1.5;
|
|
|
26 |
-moz-osx-font-smoothing: grayscale;
|
27 |
}
|
28 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
29 |
body {
|
30 |
margin: 0;
|
31 |
display: flex;
|
|
|
34 |
min-height: 100vh;
|
35 |
}
|
36 |
|
|
|
|
|
|
|
|
|
|
|
37 |
button {
|
38 |
border-radius: 8px;
|
39 |
border: 1px solid transparent;
|
|
|
52 |
button:focus-visible {
|
53 |
outline: 4px auto -webkit-focus-ring-color;
|
54 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|