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