summaryrefslogtreecommitdiff
path: root/packages/frontend/src/components/form
diff options
context:
space:
mode:
authorsyuilo <4439005+syuilo@users.noreply.github.com>2024-09-24 18:24:28 +0900
committersyuilo <4439005+syuilo@users.noreply.github.com>2024-09-24 18:24:28 +0900
commit1d8bfe4f1c1381e94d73bbd7dea42b6573b935a0 (patch)
tree65785f259f6b70c3af0849f56ff9d803ebd37786 /packages/frontend/src/components/form
parent:art: (diff)
downloadsharkey-1d8bfe4f1c1381e94d73bbd7dea42b6573b935a0.tar.gz
sharkey-1d8bfe4f1c1381e94d73bbd7dea42b6573b935a0.tar.bz2
sharkey-1d8bfe4f1c1381e94d73bbd7dea42b6573b935a0.zip
:art:
Diffstat (limited to 'packages/frontend/src/components/form')
-rw-r--r--packages/frontend/src/components/form/link.vue6
1 files changed, 3 insertions, 3 deletions
diff --git a/packages/frontend/src/components/form/link.vue b/packages/frontend/src/components/form/link.vue
index e76ed9a849..d6585bf4a5 100644
--- a/packages/frontend/src/components/form/link.vue
+++ b/packages/frontend/src/components/form/link.vue
@@ -51,18 +51,18 @@ const props = defineProps<{
width: 100%;
box-sizing: border-box;
padding: 10px 14px;
- background: var(--buttonBg);
+ background: var(--folderHeaderBg);
border-radius: 6px;
font-size: 0.9em;
&:hover {
text-decoration: none;
- background: var(--buttonHoverBg);
+ background: var(--folderHeaderHoverBg);
}
&.active {
color: var(--accent);
- background: var(--buttonHoverBg);
+ background: var(--folderHeaderHoverBg);
}
}