flip grid in talkingpointcontainer when device is a phone
This commit is contained in:
parent
25caac5d3c
commit
ebda66f32d
1 changed files with 9 additions and 0 deletions
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue