30 lines
377 B
SCSS
30 lines
377 B
SCSS
.grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(2, 1fr);
|
|
grid-auto-flow: row dense;
|
|
grid-gap: 0 1em;
|
|
}
|
|
|
|
.item {
|
|
margin: 0;
|
|
}
|
|
|
|
.error {
|
|
display: block;
|
|
color: #ba1a1a;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
}
|
|
|
|
.delete {
|
|
background-color: #ea5151;
|
|
color: #ba1a1a;
|
|
}
|
|
|
|
.mdc-button~.mdc-button {
|
|
margin-left: 1em;
|
|
} |