Responsiveness and colors

This commit is contained in:
René Preuß
2023-02-19 22:34:19 +01:00
parent 15fee4c0b4
commit 9dab7e782e
2 changed files with 2 additions and 2 deletions

View File

@@ -76,7 +76,7 @@ export default {
@apply bg-primary-500 hover:bg-primary-400 dark:bg-primary-500 dark:hover:bg-primary-600 text-black dark:text-white;
}
.base-solid {
@apply hover:bg-zinc-100 dark:bg-base-700 dark:hover:bg-base-600 text-black dark:text-white;
@apply bg-white hover:bg-zinc-100 dark:bg-base-700 dark:hover:bg-base-600 text-black dark:text-white;
}
.danger-solid {
@apply bg-rose-600 hover:bg-rose-400 dark:bg-rose-500 dark:hover:bg-rose-600 text-black dark:text-white;

View File

@@ -1,5 +1,5 @@
<template>
<div class="grid grid-cols-5 gap-4 text-center">
<div class="grid grid-cols-2 md:grid-cols-3 xl:grid-cols-5 gap-4 text-center">
<slot />
</div>
</template>