Merge branch 'main' of ssh://git.apoena.dev:22222/remanso-space/remanso

This commit is contained in:
Julien Calixte
2026-04-20 11:10:48 +02:00
6 changed files with 10 additions and 5 deletions

View File

@@ -1,5 +1,5 @@
<!doctype html> <!doctype html>
<html lang="en" data-theme="garden"> <html lang="en" data-theme="emerald">
<head> <head>
<meta charset="utf-8" /> <meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" /> <meta http-equiv="X-UA-Compatible" content="IE=edge" />

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>

View File

@@ -278,6 +278,7 @@ $border-color: rgba(18, 19, 58, 0.2);
section { section {
padding: 1rem 0 2rem; padding: 1rem 0 2rem;
overflow-x: auto; overflow-x: auto;
overflow-y: hidden;
} }
.note-content { .note-content {

View File

@@ -180,6 +180,7 @@ $border-color: rgba(18, 19, 58, 0.2);
section { section {
padding: 1rem 0 2rem; padding: 1rem 0 2rem;
overflow-x: auto; overflow-x: auto;
overflow-y: hidden;
} }
.note-content { .note-content {

View File

@@ -25,7 +25,7 @@
@plugin 'daisyui' { @plugin 'daisyui' {
themes: themes:
garden --default, emerald --default,
forest --prefersdark; forest --prefersdark;
} }

View File

@@ -2,6 +2,6 @@
// Update these values to change the light and dark themes // Update these values to change the light and dark themes
export const themeConfig = { export const themeConfig = {
light: "garden", light: 'emerald',
dark: 'forest' dark: 'forest'
} }