menu.css 433 Bytes
Newer Older
Soo Hyun Kim's avatar
Soo Hyun Kim committed
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
.showText {
    display: flex;
    flex-direction: row;
    margin-right: 5px;
    margin-left: 5px;
    position: absolute;
    right: 0;
}

.showIcon {
    display: none;
}

@media screen and (max-width: 768px) {
    .showText {
      display: none;
    }

    .showIcon {
        display: flex;
        flex-direction: row;
        margin-right: 5px;
        margin-left: 5px;
        position: absolute;
        right: 0;
    }
}