Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Palette fixes #199

Merged
merged 3 commits into from
May 23, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions frontend/src/routes/resource_types/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@
value={lang0ResourceTypeAndName}
class="checkbox-target checkbox-style"
/>
<span class="text-primary-content pl-1 text-xl"
<span class="pl-1 text-xl"
>{getResourceTypeName(lang0ResourceTypeAndName)}</span
>
</li>
Expand Down Expand Up @@ -238,7 +238,7 @@
value={lang1ResourceTypeAndName}
class="checkbox-target checkbox-style"
/>
<span class="text-primary-content pl-1 text-xl"
<span class="pl-1 text-xl"
>{getResourceTypeName(lang1ResourceTypeAndName)}</span
>
</li>
Expand Down Expand Up @@ -286,7 +286,7 @@
value={lang0ResourceTypeAndName}
class="checkbox-target checkbox-style"
/>
<span class="text-primary-content pl-1"
<span class="pl-1"
>{getResourceTypeName(lang0ResourceTypeAndName)}</span
>
</li>
Expand Down Expand Up @@ -319,7 +319,7 @@
value={lang1ResourceTypeAndName}
class="checkbox-target checkbox-style"
/>
<span class="text-primary-content pl-1 text-xl"
<span class="pl-1 text-xl"
>{getResourceTypeName(lang1ResourceTypeAndName)}</span
>
</li>
Expand Down
2 changes: 1 addition & 1 deletion frontend/tailwind.config.cjs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module.exports = {
},
plugins: [require('daisyui')],
daisyui: {
themes: false, // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"]
themes: ["light"], // false: only light + dark | true: all themes | array: specific themes like this ["light", "dark", "cupcake"]
// darkTheme: "dark", // name of one of the included themes for dark mode
// base: true, // applies background color and foreground color for root element by default
// styled: true, // include daisyUI colors and design decisions for all components
Expand Down
Loading