gap → grid-gap

This commit is contained in:
rhiannon morris 2024-07-07 22:00:44 +02:00
parent 5d576d358c
commit 411c93e860
5 changed files with 13 additions and 13 deletions

View file

@ -23,7 +23,7 @@
display: grid;
grid-template-columns: 15% auto;
align-items: baseline;
gap: 0.75em;
grid-gap: 0.75em;
}
#filters h3 {
@ -42,7 +42,7 @@
font-weight: 500;
font-size: 90%;
gap: 0.5em;
grid-column-gap: 0.5em;
}
.filterlist input {
@ -101,7 +101,7 @@
display: flex;
justify-content: center;
margin-top: 0;
gap: 2em;
grid-gap: 2em;
}
#filterstuff li {
@ -138,7 +138,7 @@
#filterstuff {
grid-area: unset;
flex-flow: column;
gap: 0.2em;
grid-column-gap: 0.2em;
}
#filterstuff li {
@ -151,7 +151,7 @@
padding: 0;
display: grid;
grid: auto-flow / repeat(auto-fit, var(--image-size));
gap: var(--gap);
grid-gap: var(--gap);
justify-content: center;
}
@ -190,7 +190,7 @@
--gap: 0.2em;
display: grid;
grid-template-columns: repeat(2, calc(50% - 3 * var(--gap)));
gap: var(--gap);
grid-gap: var(--gap);
align-items: center;
justify-content: center;
height: 100%;