blob: f3e05321a4ce75929a257f785e89a6479820195d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* This is a relatively popular workaround to align side-by-side columns.
* I use it for post headers. */
.post-header {
display: flex;
flex-wrap: wrap;
align-items: baseline;
justify-content: space-between;
column-gap: 1em;
}
.post-date {
text-align: right;
}
|