Browse Source

Add media to layout

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

+ 5
- 1
pico.css View File

@@ -7,9 +7,10 @@ body {
grid-template-areas:
'posts online'
'actions actions'
'media media'
;
grid-template-columns: 1fr auto;
grid-template-rows: 140px auto;
grid-template-rows: 140px auto auto;

position: fixed;
top: 0;
@@ -43,6 +44,9 @@ body {
display: grid;
grid-template-columns: 1fr auto;
}
.media {
grid-area: media;
}
#textbox {
resize: vertical;
}

Loading…
Cancel
Save