Added scroll to table

This commit is contained in:
ayxan
2022-10-17 12:43:51 +04:00
parent 9ef0bc46f3
commit 6dfe4d1c5c
4 changed files with 68 additions and 43 deletions

View File

@@ -1,15 +1,27 @@
.table {
margin-bottom: 1.5rem;
}
.btn-new-episode {
float: left;
}
.pages {
float: right;
}
@media only screen and (max-width: 510px) {
table {
font-size: 90%;
font-size: 87%;
}
.edit-icon {
width: 19px;
height: 19px;
width: 18px;
height: 18px;
}
.trash-icon {
width: 21px;
height: 21px;
width: 19px;
height: 19px;
}
}

View File

@@ -1,15 +1,24 @@
.table {
margin-bottom: 1.5rem;
width: 670px;
}
.table-div {
overflow-x: scroll;
}
@media only screen and (max-width: 510px) {
table {
font-size: 85%;
font-size: 83%;
}
.edit-icon {
width: 15px;
height: 15px;
width: 18px;
height: 18px;
}
.trash-icon {
width: 17px;
height: 17px;
width: 19px;
height: 19px;
}
}