Use • instead of border for footer

This commit is contained in:
Djordje Atlialp 2020-03-05 13:24:35 +01:00
parent 02fb76c09a
commit 827b107dd4

View file

@ -28,17 +28,22 @@
margin-top: 10px; margin-top: 10px;
} }
& > *:not(:last-child) { & > *:not(:last-child)::after {
border-right: 1px solid; content: "";
padding: 0 15px; padding: 0 5px;
@media #{$media-size-tablet} { @media #{$media-size-tablet} {
border: none; content: "";
padding: 0;
} }
} }
& > *:last-child { & > *:last-child {
padding: 0 15px; padding: 0 5px;
@media #{$media-size-tablet} {
padding: 0;
}
} }
} }
} }