Files
overleaf-cep/services/web/frontend/stylesheets/components/list.scss
T
Rebeka Dekany 1a1fa497fd Fix font sizes and link color on marketing pages (#31504)
GitOrigin-RevId: 3a672f4fb129a051c388aae1cce482aec9695cb6
2026-02-16 09:06:56 +00:00

45 lines
779 B
SCSS

@mixin list-checkmark {
$icon-size: 24px;
ul {
list-style: none;
margin-top: var(--spacing-06);
padding-left: 0;
}
li {
min-height: $icon-size;
background-size: $icon-size $icon-size;
margin-bottom: var(--spacing-05);
padding-left: calc(var(--spacing-05) + $icon-size);
h2,
h3,
h4,
h5,
h6 {
margin-bottom: var(--spacing-04);
}
}
}
.list-checkmark-green {
@include list-checkmark;
li {
background: url('../../../public/img/website-redesign/check-in-green-circle.svg')
no-repeat left top;
@include body-lg;
}
}
.list-checkmark-blue {
@include list-checkmark;
li {
background: url('../../../public/img/website-redesign/check-in-blue-circle.svg')
no-repeat left top;
}
}