help button
This commit is contained in:
parent
b1fc7efa3d
commit
20adde79d4
|
@ -75,6 +75,13 @@
|
|||
<PreviewIcon />
|
||||
</span>
|
||||
</div>
|
||||
<div class="help-button">
|
||||
<a
|
||||
target="_blank"
|
||||
href="https://github.com/Budibase/budibase/discussions">
|
||||
<i class="ri-question-line" />
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{#await promise}
|
||||
|
@ -101,6 +108,23 @@
|
|||
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 {
|
||||
flex: 0 0 auto;
|
||||
height: 60px;
|
||||
|
|
Loading…
Reference in New Issue