[Fix] size of arrows become random on chrome

This commit is contained in:
Tony Yang 2021-03-26 18:55:16 +08:00
parent 77f140aec7
commit 2befbab77f
Signed by: t510599
GPG Key ID: D88388851C28715D
2 changed files with 1 additions and 3 deletions

View File

@ -5,12 +5,11 @@
div.event.container { div.event.container {
display: grid; display: grid;
grid-template-columns: min-content repeat(6, 1fr) min-content; grid-template-columns: min-content repeat(6, 1fr) min-content;
grid-template-rows: 1fr;
column-gap: 30px; column-gap: 30px;
img.arrow { img.arrow {
margin: auto; margin: auto;
width: auto; width: fit-content;
height: calc(99/217 * 100%); height: calc(99/217 * 100%);
} }
} }

View File

@ -101,5 +101,4 @@
} }
} }
} }
} }