stylesheet: center the procedure title on narrow screens

This commit is contained in:
Pierre de La Morinerie 2019-03-14 17:04:11 +01:00
parent a6380f8cbb
commit 9fbcf4313a

View file

@ -27,9 +27,11 @@ $procedure-context-breakpoint: $two-columns-breakpoint;
.procedure-title {
font-size: 30px;
margin: 20px 0 0;
text-align: center;
@media (min-width: $procedure-context-breakpoint) {
margin: 50px 0 32px;
text-align: left;
}
}