Remove unnecessary margins in social links

On small screens the list is on its own line so it doesn't need a
margin, while on medium/large screens the padding of its parent element
makes the margin unnecessary as well.
This commit is contained in:
Javi Martín
2021-05-06 19:50:45 +02:00
parent 211ed101b9
commit 339c3c7eca

View File

@@ -6,6 +6,10 @@
width: 1 * 100% / 3;
}
ul {
margin: 0;
}
li {
display: inline-block;
}