fixed broken things without wearing cat ears #3

Open
and94x wants to merge 3 commits from feature/responsive-fontsize into master
Showing only changes of commit 91054af277 - Show all commits

View File

@ -127,20 +127,26 @@ div#winner-message.won {
} }
} }
@media screen and (max-width: 767px) and (orientation: portrait){ @media screen and (max-width: 767px) and (orientation: portrait) {
td { td {
font-size: large; font-size: large;
} }
div#winner-message.won { div#winner-message.won {
animation: unset; animation: unset;
} }
div#winner-message {
display: none;
}
} }
@media screen and (max-width: 576px) and (orientation: portrait){ @media screen and (max-width: 576px) and (orientation: portrait) {
td { td {
font-size: unset; font-size: unset;
} }
div#winner-message.won { div#winner-message.won {
animation: unset; animation: unset;
} }
div#winner-message {
display: none;
}
} }