removed border-bottom from sidenav collection items.

This commit is contained in:
Ross Mountjoy 2020-05-30 12:00:15 -04:00
parent 6b362950f7
commit 9ecb749601
2 changed files with 5 additions and 1 deletions

View File

@ -369,6 +369,10 @@ input:disabled {
height: 0;
}
#main-sidenav .collection .collection-item {
border-bottom: unset;
}
#sidenav-drag-handle-svg path:not(.on-primary) {
fill: var(--theme-primary);
}

View File

@ -199,7 +199,7 @@
{% macro ListViewApp(app) %}
<span class="hide searchable">{{ app.name }}</span>
{{ AppAnchor(app, classes="collection-item", style="min-height: 50px") }}
{{ AppAnchor(app, classes="collection-item", style="min-height: 50px;") }}
<img src="{{ app.icon }}" class="app-icon">
<span class="theme-muted-text app-name">{{ app.name }}</span>
</a>