mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-21 23:54:30 +00:00
Improve links accessibility
This commit is contained in:
parent
b5df20d445
commit
746d92b7ad
2 changed files with 21 additions and 4 deletions
|
@ -1,6 +1,9 @@
|
||||||
.linkPanel {
|
.linkPanel {
|
||||||
text-decoration: none;
|
|
||||||
white-space: nowrap;
|
white-space: nowrap;
|
||||||
|
|
||||||
|
flex-direction: row;
|
||||||
|
gap: 8px;
|
||||||
|
align-items: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.linkPanel:hover, .linkPanel:focus {
|
.linkPanel:hover, .linkPanel:focus {
|
||||||
|
@ -10,3 +13,14 @@
|
||||||
.linkPanel:active {
|
.linkPanel:active {
|
||||||
--bhsl-current-lightness: calc(var(--bhsl-link-lightness) + 40%);
|
--bhsl-current-lightness: calc(var(--bhsl-link-lightness) + 40%);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.linkPanelIcon {
|
||||||
|
justify-self: center;
|
||||||
|
width: 20px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
.linkPanelText {
|
||||||
|
flex-grow: 1;
|
||||||
|
justify-self: flex-start;
|
||||||
|
}
|
|
@ -17,9 +17,12 @@ export type LinkPanelProps = {
|
||||||
|
|
||||||
export const LinkPanel = ({href, icon, text, me, fade}: LinkPanelProps) => {
|
export const LinkPanel = ({href, icon, text, me, fade}: LinkPanelProps) => {
|
||||||
const panel = (
|
const panel = (
|
||||||
<span>
|
<>
|
||||||
<FontAwesomeIcon icon={icon}/> {text}
|
<FontAwesomeIcon className={style.linkPanelIcon} icon={icon}/>
|
||||||
</span>
|
<span className={style.linkPanelText}>
|
||||||
|
{text}
|
||||||
|
</span>
|
||||||
|
</>
|
||||||
)
|
)
|
||||||
|
|
||||||
if(href) {
|
if(href) {
|
||||||
|
|
Loading…
Reference in a new issue