main
css 18 lines 360 Bytes
Raw
1 .Heading {
2 display: flex;
3 gap: 6px;
4 align-items: baseline;
5 }
6
7 .Heading h1, .Heading h2, .Heading h3, .Heading h4, .Heading h5, .Heading h6 {
8 display: inline-block;
9 flex-grow: 1;
10 }
11 .Heading small {
12 display: inline-block;
13 overflow: hidden;
14 white-space: nowrap;
15 text-overflow: ellipsis;
16 text-align: right;
17 color: var(--header-help-color);
18 }