fixed the date in a single row and added over to code
parent
96f8ed02e4
commit
0ebf996ec3
|
@ -1,6 +1,6 @@
|
||||||
div.container {
|
div.container {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 7fr 1fr;
|
grid-template-columns: 1fr auto;
|
||||||
gird-template-rows: 1fr 1fr 1fr;
|
gird-template-rows: 1fr 1fr 1fr;
|
||||||
|
|
||||||
grid-template-areas:
|
grid-template-areas:
|
||||||
|
@ -17,11 +17,12 @@ div.container {
|
||||||
|
|
||||||
article {
|
article {
|
||||||
grid-area: content;
|
grid-area: content;
|
||||||
|
overflow: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
.date {
|
.date {
|
||||||
grid-area: date;
|
grid-area: date;
|
||||||
margin: 2px;
|
text-align: right;
|
||||||
}
|
}
|
||||||
|
|
||||||
pre {
|
pre {
|
||||||
|
@ -32,4 +33,7 @@ pre {
|
||||||
padding-bottom: 0.7em;
|
padding-bottom: 0.7em;
|
||||||
padding-left: 0.5em;
|
padding-left: 0.5em;
|
||||||
color: white;
|
color: white;
|
||||||
|
white-space: pre;
|
||||||
|
word-wrap: normal;
|
||||||
|
overflow-x: auto;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue