소스 검색

Allow horizontal layout

master
Roderic Day 5 년 전
부모
커밋
c20801df38
1개의 변경된 파일13개의 추가작업 그리고 0개의 파일을 삭제
  1. +13
    -0
      pico.css

+ 13
- 0
pico.css 파일 보기

@@ -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…
취소
저장