role-occurence.component.scss 1.03 KB
Newer Older
1 2 3 4 5 6
.piece {
    --piece-background-color: #e5c5ac;

    width: 300px;
    position: relative;
    background-color: var(--piece-background-color);
7 8
    border: solid #707070 1px;
    border-radius: 6px;
9 10 11 12 13 14 15 16 17 18 19 20 21

    &-title {
        font-family: 'Glacial Indifference Bold';
        margin-bottom: 10px;
    }

    &-form {
        margin: 10px 5px 10px 5px;
        display: flex;
        flex-direction: column;

        input {
            width: 25px;
Romain DELEAU's avatar
Romain DELEAU committed
22
            height: 20px;
23 24
            border: none;
            border-radius: 10px;
Romain DELEAU's avatar
Romain DELEAU committed
25
            text-align: center;
26 27 28 29 30 31 32 33 34
            margin-left: 5px;
            margin-right: 5px;
        }

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

Romain DELEAU's avatar
Romain DELEAU committed
35 36 37 38 39
        &-add {
            margin-top: 10px;
        }

        &-occurrence {
40
            display: flex;
Romain DELEAU's avatar
Romain DELEAU committed
41 42 43 44 45 46 47 48
            flex: row;
            justify-content: space-between;
            margin-top: 5px;

            &-text {
                display: flex;
                flex-direction: row;
            }
49 50 51
        }
    }
}