Skip to content

Commit 819beb5

Browse files
committed
Add anchor link styles
1 parent 8b8b973 commit 819beb5

File tree

1 file changed

+21
-14
lines changed

1 file changed

+21
-14
lines changed

docs/tailwind.css

Lines changed: 21 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,25 @@
11
@tailwind base;
2-
html {
3-
@apply h-full bg-gray-50 text-gray-900 font-sans font-normal;
4-
-webkit-tap-highlight-color: transparent;
5-
}
6-
button {
7-
@apply w-40 h-12 text-gray-600 hover:text-gray-900 text-xs font-bold tracking-wide bg-white border border-gray-300 rounded-sm focus:outline-none focus:ring m-2;
8-
}
9-
button.selected {
10-
@apply bg-blue-200;
11-
}
12-
132
@tailwind components;
14-
.opacity-97 {
15-
opacity: 0.97;
3+
@tailwind utilities;
4+
5+
@layer base {
6+
html {
7+
@apply h-full bg-gray-50 text-gray-900 font-sans font-normal;
8+
-webkit-tap-highlight-color: transparent;
9+
}
10+
a {
11+
@apply text-blue-400 hover:text-blue-600 underline;
12+
}
13+
button {
14+
@apply w-40 h-12 text-gray-600 hover:text-gray-900 text-xs font-bold tracking-wide bg-white border border-gray-300 rounded-sm focus:outline-none focus:ring m-2;
15+
}
16+
button.selected {
17+
@apply bg-blue-200;
18+
}
1619
}
1720

18-
@tailwind utilities;
21+
@layer components {
22+
.opacity-97 {
23+
opacity: 0.97;
24+
}
25+
}

0 commit comments

Comments
 (0)