47 lines
783 B
CSS
47 lines
783 B
CSS
|
|
#app_telofony .table__row {
|
|
grid-template-columns: repeat(8, 1fr);
|
|
}
|
|
|
|
#app_telofony .table__col {
|
|
min-width: initial;
|
|
width: 100%;
|
|
}
|
|
|
|
#app_telofony .table {
|
|
margin-right: 0;
|
|
border: 1px solid var(--color-light-grey);
|
|
overflow-x: auto;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
#app_telofony .table__wrapper {
|
|
width: initial;
|
|
min-width: 1080px;
|
|
}
|
|
|
|
#app_telofony .table__body .table__col span {
|
|
white-space: initial;
|
|
}
|
|
|
|
#app_telofony {
|
|
width: 100%;
|
|
justify-content: flex-start;
|
|
}
|
|
|
|
#app_telofony .table__col {
|
|
border-top: none;
|
|
}
|
|
|
|
#app_telofony .table__row .table__col:first-child {
|
|
border-left: none;
|
|
}
|
|
|
|
#app_telofony .table__body .table__row:last-child .table__col {
|
|
border-bottom: none;
|
|
}
|
|
|
|
.lw-container {
|
|
width: 100%;
|
|
padding: 30px;
|
|
} |