You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
328 B
30 lines
328 B
/*
|
|
Utility Classes
|
|
*/
|
|
.full-size {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.full-width {
|
|
width: 100%;
|
|
}
|
|
|
|
.full-height {
|
|
height: 100%;
|
|
}
|
|
|
|
.full-flex-height {
|
|
display: flex;
|
|
flex: 1 1 auto;
|
|
flex-direction: column;
|
|
}
|
|
|
|
/*
|
|
Misc
|
|
*/
|
|
|
|
// Move into component-level contextual 'active' state later
|
|
.active {
|
|
color: #909090;
|
|
}
|
|
|