comment.component.scss 1.15 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
textarea {
    resize: vertical;
    border-radius: 10px;
    border: none;
    min-height: 50px;
    max-height: 200px;
    padding: 5px 5px 5px 5px;
}

button {
    background-color: white;
    border-radius: 10px;                
    margin-left: 5px;
}

.form {
    margin-bottom: 10px;
    border-bottom: solid black 1px;
    padding-bottom: 10px;

    &-comment {
        margin-bottom: 10px;
        display: flex;
        flex-direction: column;

        textarea {
            height: 100px;
            resize: none;
        }

        &-buttons {
            margin-top: 5px;
            display: flex;
            flex-direction: row;
            position: relative;
            justify-content: flex-end;
        }
    }
    
    &-answers {
        display: flex;
        flex-direction: column;
        margin-bottom: 10px;

        textarea {
            resize: none;
        }
    }

    &-newanswer {
        display: flex;
        flex-direction: column;

        &-buttons {
            margin-top: 5px;
            display: flex;
            flex-direction: row;
            position: relative;
            justify-content: flex-end;
        }
    }
}