refactor: hide 👋🏻 text

This commit is contained in:
EnixCoda 2024-03-29 22:52:33 +08:00
parent 40dff715f7
commit cf1aaf331e
2 changed files with 24 additions and 12 deletions

View file

@ -13,18 +13,25 @@ export function Footer(props: Props) {
const { toggleShowSettings } = props const { toggleShowSettings } = props
return ( return (
<div className={'gitako-footer'}> <div className={'gitako-footer'}>
<Link <div className="gitako-footer-section">
className={'version'} <Link
href={wikiLinks.changeLog} className={'version'}
title={'Check out new features!'} href={wikiLinks.changeLog}
target="_blank" title={'Check out new features!'}
rel="noopener noreferrer" target="_blank"
> rel="noopener noreferrer"
{VERSION} >
</Link> {VERSION}
<Link href={wikiLinks.bye} target="_blank" rel="noopener noreferrer"> </Link>
👋 About to say good bye. <Link
</Link> title="About to say good bye."
href={wikiLinks.bye}
target="_blank"
rel="noopener noreferrer"
>
👋
</Link>
</div>
<RoundIconButton <RoundIconButton
aria-label={'settings'} aria-label={'settings'}
icon={GearIcon} icon={GearIcon}

View file

@ -587,6 +587,11 @@ html[data-with-gitako-spacing='true'] {
padding: 2px 6px 2px 10px; padding: 2px 6px 2px 10px;
border-top: 1px solid var(--color-border-muted); border-top: 1px solid var(--color-border-muted);
&-section {
display: inline-flex;
gap: 6px;
}
.version { .version {
color: var(--color-fg-muted); color: var(--color-fg-muted);
} }