Metiers_du_patrimoine_theme/resources/css/components/previous-next-posts.css
Nonimart b53c1b36a0
All checks were successful
continuous-integration/drone/push Build is passing
FEATURE Reversing the order of previous / next posts
2025-09-01 13:56:07 +02:00

48 lines
1.2 KiB
CSS

.previous-next-artisan {
.link-subtitle {
@apply font-bold text-patrimoine-sante-securite;
}
.link-subtitle,
.link-title {
@apply font-bold;
}
&__previous {
@apply text-right;
&:before {
@apply inline-block h-7 w-7 border-2 border-neutral-900 rounded-full shrink-0 mr-auto;
content: '';
margin-top: auto;
margin-bottom: auto;
background-image: url('../resources/img/graphic-assets/chevron_left.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 50% 50%;
}
&:after {
@apply content-none;
}
&:only-child {
grid-column: 2;
}
}
&__next {
@apply text-left;
&:after {
@apply inline-block h-7 w-7 border-2 border-neutral-900 rounded-full shrink-0 ml-auto;
content: '';
margin-top: auto;
margin-bottom: auto;
background-image: url('../resources/img/graphic-assets/chevron_right.svg');
background-repeat: no-repeat;
background-position: center;
background-size: 50% 50%;
}
&:before {
@apply content-none;
}
&:only-child {
grid-column: 2;
}
}
}