Fix alignment issues with icons in browse pages

This commit is contained in:
Tom Hughes 2013-05-10 19:28:37 +01:00
parent 278a2c5ea5
commit ed4879b14a

View file

@ -1,13 +1,17 @@
/* Make space for icons */ /* Make space for icons */
a.node, a.way, a.relation { li.node::before,
&:first-child { li.way::before,
&::before { li.relation::before,
a.node:first-child::before,
a.way:first-child::before,
a.relation:first-child::before {
margin-left: -25px; margin-left: -25px;
}
}
} }
a.node::before, a.way::before, a.relation::before {
.node::before,
.way::before,
.relation::before {
display: inline-block; display: inline-block;
width: 25px; width: 25px;
} }