Add some separators on portfolio pages

This commit is contained in:
Patrick Smith
2019-02-06 15:13:52 -05:00
parent 159b5f9838
commit 9986fd4289
3 changed files with 10 additions and 1 deletions

View File

@@ -1,5 +1,5 @@
#app-root {
background-color: $color-gray-lightest;
background-color: $color-white;
display: flex;
flex-direction: column;
justify-content: flex-start;

View File

@@ -2,6 +2,13 @@
@include media($large-screen) {
@include grid-row;
}
.line {
box-sizing: border-box;
height: 2px;
width: 100%;
border: 1px solid $color-gray-lightest;
}
}
.portfolio-breadcrumbs {