mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 19:27:52 +01:00
47 lines
578 B
SCSS
47 lines
578 B
SCSS
.newBoardContainer {
|
|
flex: 0 0 auto;
|
|
|
|
width: 250px;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
|
|
border: 1px solid black;
|
|
border-radius: 4px;
|
|
|
|
padding: 8px;
|
|
margin: 8px;
|
|
}
|
|
|
|
.boardName {
|
|
font-size: 24px;
|
|
font-weight: 600;
|
|
|
|
text-align: center;
|
|
}
|
|
|
|
.boardDescription {
|
|
color: grey;
|
|
font-size: 17px;
|
|
font-weight: 200;
|
|
|
|
text-align: center;
|
|
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.submitBtn {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
.success {
|
|
color: green;
|
|
text-align: center;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
text-align: center;
|
|
} |