mirror of
https://github.com/EnixCoda/Gitako.git
synced 2026-03-11 08:54:44 +00:00
refactor: hide 👋🏻 text
This commit is contained in:
parent
40dff715f7
commit
cf1aaf331e
2 changed files with 24 additions and 12 deletions
|
|
@ -13,18 +13,25 @@ export function Footer(props: Props) {
|
|||
const { toggleShowSettings } = props
|
||||
return (
|
||||
<div className={'gitako-footer'}>
|
||||
<Link
|
||||
className={'version'}
|
||||
href={wikiLinks.changeLog}
|
||||
title={'Check out new features!'}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{VERSION}
|
||||
</Link>
|
||||
<Link href={wikiLinks.bye} target="_blank" rel="noopener noreferrer">
|
||||
👋 About to say good bye.
|
||||
</Link>
|
||||
<div className="gitako-footer-section">
|
||||
<Link
|
||||
className={'version'}
|
||||
href={wikiLinks.changeLog}
|
||||
title={'Check out new features!'}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
{VERSION}
|
||||
</Link>
|
||||
<Link
|
||||
title="About to say good bye."
|
||||
href={wikiLinks.bye}
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
👋
|
||||
</Link>
|
||||
</div>
|
||||
<RoundIconButton
|
||||
aria-label={'settings'}
|
||||
icon={GearIcon}
|
||||
|
|
|
|||
|
|
@ -587,6 +587,11 @@ html[data-with-gitako-spacing='true'] {
|
|||
padding: 2px 6px 2px 10px;
|
||||
border-top: 1px solid var(--color-border-muted);
|
||||
|
||||
&-section {
|
||||
display: inline-flex;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.version {
|
||||
color: var(--color-fg-muted);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue