Last active
September 2, 2017 10:54
-
-
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.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.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