Merge pull request #276 from akccakcctw/fix/table-not-rendered-correctly

fix: prevent table being truncated in Chrome
master
Mike Bryant 4 years ago committed by GitHub
commit 32624a1466
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -329,7 +329,6 @@ input[type=number] {
margin: 0px auto; margin: 0px auto;
box-sizing: border-box; box-sizing: border-box;
overflow-x: auto; overflow-x: auto;
border-radius: 2px;
scrollbar-width: thin; scrollbar-width: thin;
} }
@ -365,7 +364,6 @@ input[type=number] {
background: rgba(0, 0, 0, 0.2); background: rgba(0, 0, 0, 0.2);
} }
#turnipTable { #turnipTable {
border-collapse: collapse; border-collapse: collapse;
} }
@ -602,7 +600,6 @@ body.darkmode--activated a,
body.darkmode--activated b, body.darkmode--activated b,
body.darkmode--activated input[type=number]:not(:placeholder-shown) { body.darkmode--activated input[type=number]:not(:placeholder-shown) {
color: #586472; color: #586472;
} }
body.darkmode--activated input[type="radio"]+label, body.darkmode--activated input[type="radio"]+label,

Loading…
Cancel
Save