fixed graph on narrow widths

This commit is contained in:
Jack 2020-10-18 18:26:27 +01:00
parent ff518e3d5c
commit f951edb404

View file

@ -2777,6 +2777,25 @@ key {
}
}
@media only screen and (max-width: 600px) {
#middle{
#result{
grid-template-areas:
"stats stats"
"chart chart"
"morestats morestats";
.stats{
grid-template-areas: "wpm acc";
gap: 4rem;
}
.stats.morestats{
grid-template-rows: 1fr 1fr 1fr;
gap: 1rem;
}
}
}
}
@media only screen and (max-width: 500px) {
#top{
.logo{