Fix CSS grid of guestbook form

This commit is contained in:
Helen Chong 2024-05-26 18:53:09 +08:00
parent 2b9f8e60e7
commit 83818ecc73
1 changed files with 1 additions and 2 deletions

View File

@ -19,7 +19,6 @@
.comment-form-title {
text-align: center;
margin-bottom: 0.5em;
font-size: 1.25em;
}
@ -30,7 +29,7 @@
.input-horizontal-wrapper {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
grid-template-columns: repeat(auto-fit, minmax(min(100%/1, max(16rem, 100%/3)), 1fr));
}
.input-vertical,