mirror of
https://github.com/Steffo99/steffoweb.git
synced 2024-11-21 23:54:30 +00:00
26 lines
No EOL
458 B
CSS
26 lines
No EOL
458 B
CSS
.linkPanel {
|
|
white-space: nowrap;
|
|
|
|
flex-direction: row;
|
|
gap: 8px;
|
|
align-items: center;
|
|
}
|
|
|
|
.linkPanel:hover, .linkPanel:focus {
|
|
--bhsl-current-lightness: calc(var(--bhsl-link-lightness) + 20%);
|
|
}
|
|
|
|
.linkPanel:active {
|
|
--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;
|
|
} |