1
0
mirror of https://github.com/BookStackApp/BookStack.git synced 2025-07-28 17:02:04 +03:00

Merge branch 'footer-links' of git://github.com/james-geiger/BookStack into james-geiger-footer-links

This commit is contained in:
Dan Brown
2021-01-30 22:03:16 +00:00
8 changed files with 58 additions and 1 deletions

View File

@ -0,0 +1,17 @@
/**
* Includes the footer links.
*/
footer {
flex-shrink: 0;
padding: .5em;
text-align: center;
}
footer a {
margin: 0 .5em;
}
body.flexbox footer {
display: none;
}

View File

@ -25,4 +25,8 @@ body {
line-height: 1.6;
@include lightDark(color, #444, #AAA);
-webkit-font-smoothing: antialiased;
}
background-color: #F2F2F2;
height: 100%;
display: flex;
flex-direction: column;
}

View File

@ -95,6 +95,10 @@
}
}
#content {
flex: 1 0 auto;
}
/**
* Flexbox layout system
*/

View File

@ -15,6 +15,7 @@
@import "codemirror";
@import "components";
@import "header";
@import "footer";
@import "lists";
@import "pages";