You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

24 lines
353 B

.css-grid {
grid-template-columns: repeat(1,minmax(0,1fr));
gap: 10px;
display: grid;
width: 500px;
}
.css-inv {
grid-template-columns: repeat(6,minmax(0,1fr));
gap: 10px;
display: grid;
width: 500px;
}
.actions {
border: 1px solid black;
height: 250px;
overflow: scroll;
}
.body {
display: flex;
}