mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
11cb7dc24c
* adding .gallery at top level * adding styling for heading and buttons * removing padding under cta-links * removing find more templates text * adding field title styling * adding .details-container for spacing between the content * adding a colon after field-title * moving tags styling into badge.scss file to make it more generic to use * moving section tag one level below to use it as a flex containe for adding gap property * adding field-description class * fixing the image width * adding some padding between the content * renaming a file to a more descriptive name * adding .gallery-abstract class in the scss file * adding colons in pug file * adding previous-page-link and its container class * moving paddings to larger screens only and adding a top margin for mobile screens] * adding some spacing above tags on mobile view when heading and tags are vertically aligned * adding styling to the badge and removing extra padding from h1 to match figma * lint:fix * swapping position of top-pick and official badges * adding path and itemPlural * removing unused top margin GitOrigin-RevId: a5c9b731b69ecfe2b752015c410e10a0fec2c704
29 lines
439 B
SCSS
29 lines
439 B
SCSS
.previous-page-link-container {
|
|
margin-bottom: var(--spacing-09);
|
|
}
|
|
|
|
.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;
|
|
}
|
|
}
|