From f683c61bb14aeb7439da2853b247aa08c07522aa Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Wed, 6 Aug 2025 23:56:53 +0200 Subject: [PATCH] feat: random alias --- 5s.css | 23 ++++++++++++++++++++++- 5s.html | 3 +-- src/modules/5s/BoardGameWorkshop.vue | 21 ++++++++------------- src/modules/5s/board-game-store.ts | 22 ++++++++++++++++++---- src/modules/5s/types/tools.ts | 23 +++++++++++------------ src/modules/5s/types/workshop.ts | 1 + src/utils.ts | 7 +++++++ 7 files changed, 68 insertions(+), 32 deletions(-) diff --git a/5s.css b/5s.css index 2056321..e2241b4 100644 --- a/5s.css +++ b/5s.css @@ -2,7 +2,8 @@ @plugin "@tailwindcss/typography"; @plugin "daisyui" { - themes: light --default, dark --prefersdark; + /* themes: light --default, dark --prefersdark; */ + themes: light; } *:not(td):not(th) { @@ -28,3 +29,23 @@ main { margin: 1rem 1rem 0; color: var(--color); } + +h1 { + margin: 0 0 0.5rem; +} + +.created-at { + font-size: 14pt; + margin: 0; +} + +.numeric { + font-family: 'Cutive Mono', monospace; + font-weight: bold; +} +article { + display: flex; + flex-direction: column; + align-items: center; + margin: auto; +} diff --git a/5s.html b/5s.html index 625617f..e261da7 100644 --- a/5s.html +++ b/5s.html @@ -1,5 +1,5 @@ - + @@ -10,7 +10,6 @@ My understanding of how a 5S can help team." /> - diff --git a/src/modules/5s/BoardGameWorkshop.vue b/src/modules/5s/BoardGameWorkshop.vue index 50a13a5..84858af 100644 --- a/src/modules/5s/BoardGameWorkshop.vue +++ b/src/modules/5s/BoardGameWorkshop.vue @@ -1,6 +1,5 @@