Skip to content
Snippets Groups Projects
Unverified Commit 6e951a92 authored by Conrad Zelck's avatar Conrad Zelck
Browse files

fix: fit table width on mobile devices


Although google chrome inspector show fitted table on mobile device
iphone itself shows a much to wide table. Safari inspector did show
that too. I had to inherit table width on mobile devices to fit.

Signed-off-by: default avatarConrad Zelck <git@simpel.cc>
parent 724acf07
No related branches found
No related tags found
No related merge requests found
......@@ -12,6 +12,10 @@ body {
body {
font-size: 3vmin;
}
table {
width: inherit !important;
}
}
/* iPhone landscape only */
......@@ -19,6 +23,10 @@ body {
body {
font-size: 4vmin;
}
table {
width: inherit !important;
}
}
/* iPhone portait only */
......@@ -26,6 +34,10 @@ body {
body {
font-size: 4vmin;
}
table {
width: inherit !important;
}
}
a {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment