fixed the date in a single row and added over to code

pull/1/head
kirbylife 2019-12-04 17:41:49 -06:00
parent 96f8ed02e4
commit 0ebf996ec3
1 changed files with 6 additions and 2 deletions

View File

@ -1,6 +1,6 @@
div.container {
display: grid;
grid-template-columns: 7fr 1fr;
grid-template-columns: 1fr auto;
gird-template-rows: 1fr 1fr 1fr;
grid-template-areas:
@ -17,11 +17,12 @@ div.container {
article {
grid-area: content;
overflow: hidden;
}
.date {
grid-area: date;
margin: 2px;
text-align: right;
}
pre {
@ -32,4 +33,7 @@ pre {
padding-bottom: 0.7em;
padding-left: 0.5em;
color: white;
white-space: pre;
word-wrap: normal;
overflow-x: auto;
}