Files
outline/src/components/Layout/Layout.scss
Jori Lallo ccab580aef Titles
2016-06-05 23:57:58 -07:00

56 lines
732 B
SCSS

@import '../../utils/constants.scss';
.container {
display: flex;
flex: 1;
flex-direction: column;
width: 100%;
}
.header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
height: $headerHeight;
border-bottom: 1px solid #eee;
font-size: 14px;
line-height: 1;
&.fixed {
position: fixed;
top: 0;
left: 0;
right: 0;
z-index: 900;
background: #fff;
}
}
.title {
a {
color: $textColor;
}
}
.teamName a {
font-family: 'Atlas Grotesk';
font-weight: bold;
color: $textColor;
text-decoration: none;
font-size: 16px;
}
.content {
display: flex;
justify-content: center;
&.fixed {
padding-top: $headerHeight;
}
}