18 lines
330 B
SCSS
18 lines
330 B
SCSS
// Zadnjih 25 sprememb tabela - horizontal scroll
|
|
#table-tracking-wrapper1 {
|
|
display: table;
|
|
table-layout: fixed;
|
|
width: 100%;
|
|
}
|
|
|
|
#table-tracking-wrapper2 {
|
|
display: table-cell;
|
|
overflow-x: auto;
|
|
width: 100%;
|
|
}
|
|
|
|
#table-tracking-wrapper2 table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
white-space: nowrap;
|
|
} |