reduce scrollbar width when using mobile device with small screen
This commit is contained in:
parent
723cec3d1c
commit
f8195b600c
|
@ -241,6 +241,12 @@ td {
|
||||||
background-color: #d4dfe7;
|
background-color: #d4dfe7;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
::-webkit-scrollbar {
|
||||||
|
width: 6px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* task-table */
|
/* task-table */
|
||||||
.task-table {
|
.task-table {
|
||||||
margin-left: 15px;
|
margin-left: 15px;
|
||||||
|
|
Reference in a new issue