Merge pull request #53 from theRTC204/improve-data-table-usability

fix: Improved data table visibility on different devices
master
Mike Bryant 4 years ago committed by GitHub
commit 8afadbddeb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -34,6 +34,7 @@ h2 {
.nook-phone {
width: 100%;
max-width: 1400px;
box-sizing: border-box;
margin: 16px auto;
border-radius: 40px;
@ -298,6 +299,11 @@ input[type=number] {
border-radius: 2px;
}
@media only screen and (max-width: 1440px) and (pointer: fine) {
.table-wrapper {
max-height: calc(75vh - 40px);
}
}
.table-wrapper::-webkit-scrollbar {
height: 8px;
@ -341,6 +347,7 @@ input[type=number] {
}
#turnipTable td {
white-space: nowrap;
max-width: 100px;
padding: 6px 4px;
text-align: center;
@ -358,7 +365,7 @@ input[type=number] {
}
#turnipTable .table-pattern {
white-space: normal;
white-space: nowrap;
}

Loading…
Cancel
Save