mirror of
https://github.com/TheAnachronism/docspell.git
synced 2025-04-05 10:59:33 +00:00
Merge pull request #1408 from eikek/improve-card-columns
Add more breakpoints and increase card column count
This commit is contained in:
commit
b27dc0dfec
@ -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"
|
||||
|
@ -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']
|
||||
|
Loading…
x
Reference in New Issue
Block a user