mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
12 lines
187 B
CSS
12 lines
187 B
CSS
.timestamp-list dl {
|
|
display: grid;
|
|
grid-template-columns: max-content auto;
|
|
}
|
|
|
|
.timestamp-list dt {
|
|
grid-column-start: 1;
|
|
}
|
|
|
|
.timestamp-list dd {
|
|
grid-column-start: 2;
|
|
}
|