37 lines
564 B
CSS
37 lines
564 B
CSS
.container {
|
|
display: none;
|
|
}
|
|
|
|
.table {
|
|
border-collapse: collapse;
|
|
border-spacing: 0;
|
|
width: 100%;
|
|
}
|
|
|
|
.thead {
|
|
background-color: var(--Main-Grey-10);
|
|
border-left: 1px solid var(--Main-Grey-10);
|
|
border-right: 1px solid var(--Main-Grey-10);
|
|
}
|
|
|
|
.th {
|
|
text-align: left;
|
|
padding: 20px 32px;
|
|
}
|
|
|
|
.placeholder {
|
|
width: 100%;
|
|
padding: 24px;
|
|
text-align: center;
|
|
border: 1px solid var(--Main-Grey-10);
|
|
}
|
|
|
|
@media screen and (min-width: 768px) {
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
overflow-x: auto;
|
|
}
|
|
}
|