We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df6ecb0 commit 81e13c0Copy full SHA for 81e13c0
1 file changed
app/components/Readme.vue
@@ -79,15 +79,24 @@ defineProps<{
79
}
80
81
.readme :deep(a) {
82
- color: var(--fg);
83
- text-decoration: underline;
84
- text-underline-offset: 4px;
85
- text-decoration-color: var(--fg-subtle);
86
- transition: text-decoration-color 0.2s ease;
+ @apply underline-offset-[0.2rem]
+ @apply underline
+ @apply decoration-1
+ @apply decoration-fg/30
+ @apply font-mono
87
+ @apply text-fg
88
+ @apply transition-colors
89
+ @apply duration-200;
90
91
92
.readme :deep(a:hover) {
- text-decoration-color: var(--accent);
93
+ @apply decoration-accent
94
+ @apply text-accent;
95
+}
96
+
97
+.readme :deep(a:focus-visible) {
98
99
100
101
102
.readme :deep(code) {
0 commit comments