13 lines
264 B
CSS
13 lines
264 B
CSS
.parcours-renovateur {
|
|
@apply relative;
|
|
@screen lg {
|
|
&:before {
|
|
@apply block absolute w-10 h-full rounded-full bg-secondary opacity-10;
|
|
z-index: -1;
|
|
content: '';
|
|
left: 50%;
|
|
transform: translateX(-50%);
|
|
}
|
|
}
|
|
}
|