fix: current color for svg in buttons

This commit is contained in:
Julien Calixte
2026-04-19 10:49:37 +02:00
parent cf02569c75
commit b827f31cf0

View File

@@ -32,7 +32,10 @@ defineProps<{ user: string; repo: string }>()
</svg> </svg>
</router-link> --> </router-link> -->
<button class="btn btn-ghost btn-circle text-base-content" onclick="font_modal.showModal()"> <button
class="btn btn-ghost btn-circle text-base-content"
onclick="font_modal.showModal()"
>
<svg <svg
xmlns="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg"
class="icon icon-tabler icons-tabler-outline icon-tabler-typography" class="icon icon-tabler icons-tabler-outline icon-tabler-typography"
@@ -162,7 +165,7 @@ defineProps<{ user: string; repo: string }>()
margin-top: 10px; margin-top: 10px;
button { button {
color: inherit; color: var(--color-accent);
} }
} }
</style> </style>