Added padding around list links

Since our internet overlord google was getting upset about links that were close together.
This commit is contained in:
Dan Brown 2021-10-05 13:50:35 +01:00
commit adaaac412c
Signed by: danb
GPG key ID: 46D9F943C24A2EF9

View file

@ -314,6 +314,14 @@ ul {
}
}
@include smaller-than($l) {
ul li a, ol li a {
display: inline-block;
padding-top: .5rem;
padding-bottom: .5rem;
}
}
ol {
list-style-type: decimal;
padding-left: $-m*1.2;