sizing and navs

This commit is contained in:
vabene1111
2024-04-07 08:29:21 +02:00
parent 1cd9caef4a
commit cb8dd3bc99
6 changed files with 59 additions and 43 deletions

View File

@@ -0,0 +1,26 @@
export function homePageCols(breakpoint: string){
switch (breakpoint) {
case "xs": {
return 1
}
case "sm": {
return 2
}
case "md": {
return 4
}
case "lg": {
return 5
}
case "xl": {
return 6
}
case "xxl": {
return 7
}
default: {
return 1
}
}
}