19 lines
149 B
CSS
19 lines
149 B
CSS
.crud {
|
|
display: grid;
|
|
gap: 16px
|
|
}
|
|
|
|
.row {
|
|
display: flex;
|
|
gap: 12px;
|
|
align-items: flex-end
|
|
}
|
|
|
|
.grow {
|
|
flex: 1
|
|
}
|
|
|
|
table {
|
|
width: 100%
|
|
}
|