flip grid in talkingpointcontainer when device is a phone

This commit is contained in:
Daniel Vinci 2021-04-30 11:57:34 -06:00
parent 25caac5d3c
commit ebda66f32d
No known key found for this signature in database
GPG key ID: 7A700C29916C26CA

View file

@ -9,4 +9,13 @@
grid-template-columns: 30% auto;
grid-template-rows: auto;
}
@media only screen
and (max-device-width: 900px)
and (orientation: portrait) {
.talkingPointContainer {
grid-template-columns: auto;
grid-template-rows: 115px auto;
}
}
</style>