24 lines
409 B
SCSS
24 lines
409 B
SCSS
/* PageLinks.scss */
|
|
|
|
.link-container {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 12px 1px;
|
|
border-radius: 4px;
|
|
color: var(--text-tertiary);
|
|
text-decoration: none;
|
|
transition: background 0.2s ease-in-out;
|
|
|
|
&:hover {
|
|
color: #fff;
|
|
background-color: var(--hover-color);
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.link-text {
|
|
color: var(--text-tertiary);
|
|
margin-left: 12px;
|
|
font-weight: 500;
|
|
}
|