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
|
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}
|
||||||
|
|
|
||||||
|
|
@ -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);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue