35 lines
487 B
CSS
35 lines
487 B
CSS
form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 60ch;
|
|
}
|
|
|
|
textarea {
|
|
box-sizing: border-box;
|
|
height: auto;
|
|
overflow: hidden;
|
|
resize: none;
|
|
}
|
|
|
|
.ingredients-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 10px;
|
|
}
|
|
|
|
.times-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
row-gap: 10px;
|
|
}
|
|
|
|
.mat-column-reorder {
|
|
width: 32px;
|
|
text-align: center;
|
|
}
|
|
|
|
.mat-column-actions {
|
|
width: 32px;
|
|
text-align: center;
|
|
}
|