浏览代码

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;
}
}

正在加载...
取消
保存