18 lines
266 B
CSS
18 lines
266 B
CSS
.grid-container {
|
|
height: 600px;
|
|
max-height: 600px;
|
|
overflow: auto;
|
|
width: 100%;
|
|
max-width: 100%;
|
|
}
|
|
|
|
.grid-container ::deep table {
|
|
min-width: 100%;
|
|
width: max-content;
|
|
}
|
|
|
|
.grid-container ::deep th,
|
|
.grid-container ::deep td {
|
|
white-space: nowrap;
|
|
}
|