1
0
Fork 0
mirror of synced 2024-10-03 02:27:06 +13:00

Reduce padding and indentation in nav items to provide more room for text

This commit is contained in:
Andrew Kingston 2020-11-05 11:48:49 +00:00
parent 80685864f6
commit 1fdcb81f4b

View file

@ -14,7 +14,7 @@
class="nav-item"
class:border
class:selected
style={`padding-left: ${indentLevel * 18}px`}
style={`padding-left: ${indentLevel * 14}px`}
{draggable}
on:dragend
on:dragstart
@ -65,7 +65,7 @@
}
.content {
padding: 0 var(--spacing-m);
padding: 0 var(--spacing-s);
height: 32px;
display: flex;
flex-direction: row;
@ -97,6 +97,9 @@
flex: 1 1 auto;
font-weight: 500;
font-size: var(--font-size-xs);
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.actions {