14 lines
214 B
SCSS
14 lines
214 B
SCSS
#footer{
|
|
width: 100%;
|
|
background: grey;
|
|
@include inlineflex;
|
|
.sub-content{
|
|
width: calc((100% / 3) - 40px);
|
|
border-top: 1px solid black;
|
|
margin: 20px;
|
|
h3{
|
|
margin-top: 20px;
|
|
}
|
|
}
|
|
}
|