mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-02 14:24:19 +01:00
34 lines
414 B
SCSS
34 lines
414 B
SCSS
//
|
|
// Footer
|
|
//
|
|
|
|
.bd-footer {
|
|
padding-top: 2rem;
|
|
margin-top: 2rem;
|
|
font-size: 85%;
|
|
color: $bd-graphite-light;
|
|
text-align: center;
|
|
background-color: $bd-graphite;
|
|
|
|
a {
|
|
color: #fff;
|
|
}
|
|
|
|
@include media-breakpoint-up(sm) {
|
|
text-align: left;
|
|
}
|
|
}
|
|
|
|
.bd-footer-links {
|
|
padding-left: 0;
|
|
margin-bottom: 1rem;
|
|
|
|
li {
|
|
display: inline-block;
|
|
|
|
+ li {
|
|
margin-left: 1rem;
|
|
}
|
|
}
|
|
}
|