Files
outline/src/components/Layout/Layout.scss
2016-05-15 16:44:17 -05:00

40 lines
556 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: 42px;
border-bottom: 1px solid #eee;
font-size: 14px;
}
.teamName a {
font-family: 'Atlas Grotesk';
font-weight: bold;
color: $textColor;
text-decoration: none;
font-size: 16px;
}
.content {
display: flex;
justify-content: center;
}
.actions a {
text-decoration: none;
margin-right: 15px;
}