Skip to content

Instantly share code, notes, and snippets.

@chrisobriensp
Last active September 2, 2017 10:54
Show Gist options
  • Save chrisobriensp/f82f67676db091776fc81a40550375c0 to your computer and use it in GitHub Desktop.
Save chrisobriensp/f82f67676db091776fc81a40550375c0 to your computer and use it in GitHub Desktop.
Corresponding SCSS file for an SPFx Application Customizer which provides a global page header/footer.
.app {
.header {
height:60px;
text-align:center;
line-height:2.5;
font-weight:bold;
display: flex;
align-items: center;
justify-content: center;
background-color: goldenrod;
}
.footer {
height:60px;
text-align:center;
line-height:2.5;
font-weight:bold;
display: flex;
align-items: center;
justify-content: center;
background-color: darkgreen;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment