Skip to content

Commit

Permalink
Merge pull request #91 from yuvipanda/fix-grid
Browse files Browse the repository at this point in the history
Set fixed grid width
yuvipanda authored Nov 14, 2024
2 parents a0eecb8 + 9965c56 commit 55e9dbe
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/form.css
Original file line number Diff line number Diff line change
@@ -13,6 +13,10 @@
gap: 3rem;
}

.profile-select-body {
flex: 1;
}

.profile-select-body .profile-select-label {
font-weight: normal;
margin-bottom: 1rem;
@@ -36,9 +40,10 @@

.profile-option-container {
display: grid;
grid-template-columns: 1fr 6fr;
grid-template-columns: 10rem minmax(0, 1fr);
gap: 1rem;
margin-bottom: 2rem;
width: 100%;
}

.profile-option-label-container {

0 comments on commit 55e9dbe

Please sign in to comment.