menu.module.scss 759 Bytes
Newer Older
1
.content {
Kim, Subin's avatar
Kim, Subin committed
2
    background-color: #fff;
3
    z-index: 100;
Kim, Subin's avatar
Kim, Subin committed
4
    overflow: hidden;
5
    width: inherit;
6
7
8
9
10

    & .close {
        top: 10px;
        right: 10px;
    }
Kim, Subin's avatar
Kim, Subin committed
11
12
13
14
15
16
17
18
19
20

    & .title {
        overflow: hidden;
        text-overflow: ellipsis;
        width: 86%;
    }

    & .checkBox {
        width: 1.5em;
        height: 1.5em;
Kim, Subin's avatar
Kim, Subin committed
21
        background-color: #fff;
Kim, Subin's avatar
Kim, Subin committed
22
23
24
25
26
27
28
29
30
31

        &:checked {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='currentColor' d='M13.854 3.646a.5.5 0 0 1 0 .708l-7 7a.5.5 0 0 1-.708 0l-3.5-3.5a.5.5 0 1 1 .708-.708L6.5 10.293l6.646-6.647a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
        }
    }

    & .logout {
        right: 10px;
        cursor: pointer;
    }
32
}