23 lines
313 B
CSS
23 lines
313 B
CSS
.container {
|
|
display: flex;
|
|
flex: 1;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
.search-input {
|
|
|
|
}
|
|
|
|
.boards {
|
|
margin-top: 1rem;
|
|
flex: 1;
|
|
display: flex;
|
|
gap: 0.5rem;
|
|
justify-content: center;
|
|
/*background-color: rebeccapurple;*/
|
|
padding-right: 5%;
|
|
padding-left: 5%;
|
|
}
|