48 lines
1.2 KiB
CSS
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;
|
|
}
|
|
}
|
|
}
|