Skip to content

Commit

Permalink
fix(DownView): 💄 .icon styles were only being added if Graph Analysis…
Browse files Browse the repository at this point in the history
… is installed
  • Loading branch information
SkepticMystic committed Nov 30, 2021
1 parent 8335f38 commit b17398c
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions src/Components/Down.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,6 @@
{/if}
</span>
<button
class="icon"
aria-label="Refresh Stats View (also refreshes Breadcrumbs Index)"
on:click={async () => {
await plugin.refreshIndex();
Expand Down Expand Up @@ -100,7 +99,7 @@
.BC-downs {
padding-left: 5px;
}
.BC-downs > div{
.BC-downs > div {
white-space: nowrap;
}
pre {
Expand All @@ -110,4 +109,12 @@
.is-unresolved {
color: var(--text-muted);
}
.icon {
color: var(--text-normal);
display: inline-block;
padding-top: 5px !important;
width: 20px;
height: 20px;
}
</style>

0 comments on commit b17398c

Please sign in to comment.