Fixed bullet alignment issue @grin found

This commit is contained in:
ポール ウェッブ 2018-06-20 10:28:20 -05:00
parent cd3364e01c
commit b600665ba0

View file

@ -18,12 +18,21 @@
position: relative; position: relative;
&::before { &::before {
top: 8px; left: -1.2rem; background-color: $black;
border-radius: 50%;
content: "\00B7"; content: "";
font-size: 3.5rem;
line-height: 0; line-height: 0;
position: absolute; position: absolute;
@media (min-width: 901px) {
width: 7px; height: 7px;
top: 14px; left: -1.05rem;
}
@media (max-width: 900px) {
width: 6px; height: 6px;
top: 11px; left: -0.95rem;
}
} }
} }