Add missing styles for system tracking

This commit is contained in:
Joe Fiorini 2015-06-02 12:11:22 -04:00
parent 5beb7b1aa0
commit 0dd9c4e5eb
2 changed files with 38 additions and 0 deletions

View File

@ -0,0 +1,24 @@
/** @define FactDataError */
@import "shared/branding/colors.less";
.FactDataError {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
// background-color: @ansible-red;
&-message {
font-family: merriweather;
font-size: 1.5em;
line-height: 1.5;
text-align: center;
width: 75%;
margin-bottom: 2em;
}
&-note {
}
}

View File

@ -0,0 +1,14 @@
.SystemTrackingContainer {
display: flex;
flex-direction: column;
min-height: 85vh;
> * {
flex: 0;
}
&-main {
flex: 1;
align-self: stretch;
}
}