mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
Matches the style of the existing footer and makes the links move to the next line instead of wrapping if the viewport is too small for all of the footer to fit on one line. Also moves the footer over to bootstrap styles
32 lines
528 B
SCSS
32 lines
528 B
SCSS
.navbar {
|
|
/* Shows the number of undone next action */
|
|
.badge {
|
|
color: #fff;
|
|
background: #f00;
|
|
display: inline;
|
|
padding: 3px 5px;
|
|
font-size: 12pt;
|
|
height:26px;
|
|
border-radius: 2px;
|
|
}
|
|
}
|
|
|
|
.footer {
|
|
@include make-xs-column(12);
|
|
@include make-sm-column(10);
|
|
@include make-sm-column-offset(1);
|
|
font-size: 85%;
|
|
text-align: center;
|
|
color: #999;
|
|
margin: 20px 0 5px;
|
|
}
|
|
|
|
.footer-line {
|
|
display: block;
|
|
}
|
|
|
|
@media screen and (min-width: 1170px) {
|
|
.footer-line {
|
|
display: inline;
|
|
}
|
|
}
|