help button
This commit is contained in:
parent
df316167cc
commit
b3f34ae9ae
|
@ -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;
|
||||||
|
|
Loading…
Reference in New Issue