Merge pull request #1408 from eikek/improve-card-columns

Add more breakpoints and increase card column count
This commit is contained in:
mergify[bot] 2022-02-21 22:09:35 +00:00 committed by GitHub
commit b27dc0dfec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 1 deletions

View File

@ -208,7 +208,9 @@ itemContainerCss : ViewConfig -> String
itemContainerCss cfg =
case cfg.arrange of
Data.ItemArrange.Cards ->
"grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 2xl:grid-cols-4 gap-2"
"grid grid-cols-1 sm:grid-cols-2 md:grid-cols-2 lg:grid-cols-3 "
++ "xl:grid-cols-3 2xl:grid-cols-4 3xl:grid-cols-5 4xl:grid-cols-6 "
++ "5xl:grid-cols-8 6xl:grid-cols-10 gap-2"
Data.ItemArrange.List ->
"flex flex-col divide-y"

View File

@ -8,6 +8,17 @@ module.exports = {
"./src/main/styles/keep.txt",
"../restserver/src/main/templates/*.html"
],
theme: {
extend: {
screens: {
'3xl': '1792px',
'4xl': '2048px',
'5xl': '2560px',
'6xl': '3072px',
'7xl': '3584px'
}
}
},
variants: {
extend: {
backgroundOpacity: ['dark']