0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2026-01-02 08:32:41 +00:00

fixed vertical spacing

This commit is contained in:
Gazook89
2022-09-15 13:19:27 -05:00
parent bb25d30663
commit fc5d06be0e
2 changed files with 32 additions and 21 deletions

View File

@@ -9,19 +9,28 @@
background-color : #999;
height : calc(100vh - 54px); // 54px is the height of the navbar + snippet bar. probably a better way to dynamic get this.
display: flex;
flex-wrap: wrap;
gap: 10px;
& > div {
margin-bottom: 10px;
}
.field-group {
display: flex;
flex-direction: column;
flex: 5;
width: 100%;
flex-wrap: wrap;
gap: 10px;
}
.field-column {
display: flex;
flex-direction: column;
flex: 5 0 200px;
gap: 10px;
}
.field{
display : flex;
width : 100%;
min-width : 200px;
&>label{
display : inline-block;
vertical-align : top;