MediaAttachmentGrid: optimize preview layout (#11)
This commit is contained in:
parent
a7b0f480ac
commit
06e2460b04
2 changed files with 15 additions and 6 deletions
|
@ -13,12 +13,12 @@ const MediaAttachmentGrid: Component<{
|
|||
const gridTemplateColumns = () => {
|
||||
const l = props.attachments.length;
|
||||
if (l < 2) {
|
||||
return "1fr";
|
||||
return "minmax(40px, auto)";
|
||||
}
|
||||
if (l < 4) {
|
||||
return "repeat(2, 1fr)";
|
||||
return "repeat(2, minmax(40px, auto))";
|
||||
}
|
||||
return "repeat(3, 1fr)";
|
||||
return "repeat(3, minmax(40px, auto))";
|
||||
};
|
||||
|
||||
const openViewerFor = (index: number) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue