๐Ÿ“ฆ leonardomso / simple-todo

๐Ÿ“„ _topics.scss ยท 31 lines
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.topics {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;

    ul {
        @extend %roboto-regular;
        list-style: none;

        li {
            margin-top: 20px;
        }
    }

    input[type=text] {
        border: none;
        width: 100%;
        margin-top: 20px;
        font-size: 18px;
        color: $font-gray;
        outline: none;
        text-indent: 20px;

        &::placeholder {
            color: $low-gray;
            text-align: center;
        }
    }
}