1
0
Fork 0
mirror of synced 2024-09-30 00:57:16 +13:00

help button

This commit is contained in:
Martin McKeaveney 2020-10-19 12:55:57 +01:00
parent b1fc7efa3d
commit 20adde79d4

View file

@ -75,6 +75,13 @@
<PreviewIcon /> <PreviewIcon />
</span> </span>
</div> </div>
<div class="help-button">
<a
target="_blank"
href="https://github.com/Budibase/budibase/discussions">
<i class="ri-question-line" />
</a>
</div>
</div> </div>
{#await promise} {#await promise}
@ -101,6 +108,23 @@
color: var(--grey-5); color: var(--grey-5);
} }
.help-button {
position: absolute;
bottom: var(--spacing-m);
right: var(--spacing-m);
font-size: 40px;
cursor: pointer;
}
.help-button i {
color: var(--grey-7);
transition: 0.5s all;
}
.help-button i:hover {
color: var(--blue);
}
.top-nav { .top-nav {
flex: 0 0 auto; flex: 0 0 auto;
height: 60px; height: 60px;