Skip to content

Commit

Permalink
Set fixed grid width
Browse files Browse the repository at this point in the history
  • Loading branch information
oliverroick committed Nov 14, 2024
1 parent a386195 commit dd03e22
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
Expand Up @@ -13,6 +13,10 @@
gap: 3rem;
}

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

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

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

.profile-option-label-container {
Expand Down

0 comments on commit dd03e22

Please sign in to comment.