Files
astuto/app/javascript/stylesheets/components/Board/NewPost.scss
2019-09-02 14:32:57 +02:00

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;
}