mirror of
https://github.com/kovidgoyal/kitty
synced 2026-07-02 12:44:01 +02:00
14 lines
209 B
CSS
14 lines
209 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;
|
|
margin-left: 1em;
|
|
}
|