1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 21:29:42 +02:00

Improve doc table of contents font sizing

This commit is contained in:
McMatts 2019-03-08 15:51:36 +00:00
parent b2fcad649e
commit 0985dbf5b6

View file

@ -25,14 +25,14 @@
> .index-list { > .index-list {
padding: 0; padding: 0;
list-style: none; list-style: none;
font-size: 0.9rem; font-size: 1rem;
overflow-x: hidden; overflow-x: hidden;
list-style-type: none; list-style-type: none;
margin: 0 0 0 0; margin: 0 0 0 0;
.item { .item {
@extend .no-select; @extend .no-select;
padding: 4px 0; padding: 5px 0;
text-overflow: ellipsis; text-overflow: ellipsis;
word-wrap: break-word; word-wrap: break-word;
white-space: nowrap; white-space: nowrap;
@ -40,7 +40,7 @@
> .link { > .link {
color: map-get($gray-shades, 800); color: map-get($gray-shades, 800);
font-weight: 400; font-weight: 500;
&:hover { &:hover {
color: map-get($yellow-shades, 600); color: map-get($yellow-shades, 600);
@ -51,6 +51,7 @@
font-weight: 500; font-weight: 500;
display: inline-block; display: inline-block;
margin-right: 10px; margin-right: 10px;
font-size: 0.9rem;
} }
} }