Browse Source

Allow horizontal layout

master
Roderic Day 5 years ago
parent
commit
c20801df38
1 changed files with 13 additions and 0 deletions
  1. +13
    -0
      pico.css

+ 13
- 0
pico.css View File

@@ -94,3 +94,16 @@ body {
.video-container.mirror video {
transform: scaleX(-1);
}
@media only screen and (min-width: 600px) {
.chat {
grid-template-areas:
'online media'
'posts media'
'actions media'
;
grid-template-columns: 1fr 4fr;
grid-template-rows: auto 1fr auto;
height: 100vh;
width: 100vw;
}
}

Loading…
Cancel
Save