mirror of
https://github.com/overleaf/overleaf.git
synced 2024-10-31 21:21:03 -04:00
209a3670ce
[web] Add hover effect to `.previous-page-link` class GitOrigin-RevId: ccba4cb22274695a2a3b63abcf86d7bc0c6dec61
25 lines
368 B
SCSS
25 lines
368 B
SCSS
.previous-page-link {
|
|
@include body-sm;
|
|
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
color: var(--neutral-90);
|
|
|
|
&:hover {
|
|
text-decoration: underline;
|
|
color: var(--green-60);
|
|
}
|
|
|
|
&:visited {
|
|
color: var(--neutral-90);
|
|
|
|
&:hover {
|
|
color: var(--green-60);
|
|
}
|
|
}
|
|
|
|
i {
|
|
margin-right: var(--spacing-02);
|
|
padding-bottom: 3px;
|
|
}
|
|
}
|