2021-08-19 16:51:08 +02:00
|
|
|
|
2021-05-03 15:11:30 +02:00
|
|
|
.table-container {
|
2021-08-19 16:51:08 +02:00
|
|
|
overflow: scroll;
|
|
|
|
scrollbar-width: none;
|
|
|
|
font-size: 13px;
|
|
|
|
&::-webkit-scrollbar {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
@media(min-width: 576px){
|
|
|
|
font-size: 16px;
|
|
|
|
}
|
|
|
|
thead th{
|
|
|
|
text-align: right;
|
|
|
|
&:first-child{
|
|
|
|
text-align: left;
|
2021-05-03 15:11:30 +02:00
|
|
|
}
|
2021-08-19 16:51:08 +02:00
|
|
|
&:nth-child(2) {
|
|
|
|
display: none;
|
|
|
|
@media(min-width: 1100px){
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
tr {
|
|
|
|
td {
|
|
|
|
text-align: right;
|
|
|
|
&:first-child{
|
|
|
|
text-align: left;
|
|
|
|
}
|
|
|
|
&:nth-child(2) {
|
2021-05-03 15:11:30 +02:00
|
|
|
display: none;
|
2021-08-19 16:51:08 +02:00
|
|
|
@media(min-width: 1100px){
|
|
|
|
display: table-cell;
|
|
|
|
}
|
|
|
|
}
|
2021-05-03 15:11:30 +02:00
|
|
|
}
|
2021-08-19 16:51:08 +02:00
|
|
|
}
|
2021-05-03 15:11:30 +02:00
|
|
|
}
|