1
Fork 0
mirror of https://github.com/Steffo99/steffoweb.git synced 2024-10-16 15:27:28 +00:00
steffoweb/components/LinkPanel.module.css

26 lines
458 B
CSS
Raw Normal View History

2022-10-16 23:58:17 +00:00
.linkPanel {
2023-02-17 04:58:48 +00:00
white-space: nowrap;
2023-02-28 12:01:43 +00:00
flex-direction: row;
gap: 8px;
align-items: center;
2022-10-16 23:58:17 +00:00
}
.linkPanel:hover, .linkPanel:focus {
--bhsl-current-lightness: calc(var(--bhsl-link-lightness) + 20%);
}
.linkPanel:active {
--bhsl-current-lightness: calc(var(--bhsl-link-lightness) + 40%);
}
2023-02-28 12:01:43 +00:00
.linkPanelIcon {
justify-self: center;
width: 20px;
flex-shrink: 0;
}
.linkPanelText {
flex-grow: 1;
justify-self: flex-start;
}