This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.

71 lines
883 B
SCSS

@import '~styles/constants.scss';
.container {
display: flex;
flex: 1;
flex-direction: column;
width: 100%;
height: 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;
}
.headerLeft {
display: flex;
align-items: center;
.team {
font-family: 'Atlas Grotesk';
font-weight: bold;
color: $textColor;
text-decoration: none;
font-size: 16px;
}
.title {
color: #ccc;
a {
color: #ccc;
}
a:hover {
color: $textColor;
}
}
}
.headerRight {
}
.search {
margin: 0 5px;
padding: 15px 5px 0 5px;
cursor: pointer;
img {
height: 20px;
}
}
.content {
display: flex;
flex: 1;
justify-content: center;
height: 100%;
overflow: scroll;
}