104 switch to daisyui (#106)

* adding daisyui

* adding daisy ui

* switching to daisy ui

* switching to daisy ui

* adding daisy ui

* adding daisy ui
This commit was merged in pull request #106.
This commit is contained in:
2025-12-29 19:43:27 -06:00
committed by GitHub
parent 64c94ca9f4
commit f041e0e1ba
41 changed files with 1024 additions and 4286 deletions

View File

@@ -14,17 +14,17 @@ export const useBreakpoints = () => {
break;
}
case width >= 640: {
case width >= 640 && width < 1024: {
size = ScreenSize.MD;
break;
}
case width >= 1024: {
case width >= 1024 && width < 1280: {
size = ScreenSize.LG
break;
}
case width >= 1280: {
case width >= 1280 && width < 1536: {
size = ScreenSize.XL;
break;