28 lines
465 B
CSS
28 lines
465 B
CSS
.section {
|
|
width: 100%;
|
|
}
|
|
.mainContainer {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
flex: 1 0 0;
|
|
align-self: stretch;
|
|
background: #191a24;
|
|
width: 100%;
|
|
}
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
flex: 1 0 0;
|
|
align-self: stretch;
|
|
background: #191a24;
|
|
}
|
|
.topHeader {
|
|
display: flex;
|
|
padding: 24px;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
align-self: stretch;
|
|
background: #21232f;
|
|
}
|