Merge pull request #900 from saif191020/main
Added Css to Improve Mobile support on the home page
This commit is contained in:
commit
ed218d76ce
1 changed files with 6 additions and 0 deletions
|
|
@ -5,6 +5,12 @@ table {
|
||||||
word-break: break-all;
|
word-break: break-all;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Make table horizontally scrollable on small screens
|
||||||
|
@media screen and (max-width: 768px) {
|
||||||
|
display: block;
|
||||||
|
overflow-x: auto;
|
||||||
|
white-space: nowrap;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
.flex-container {
|
.flex-container {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue