summaryrefslogtreecommitdiff
path: root/Pages/Component/Dropdown.razor.css
blob: fe6815160880cc9aa900fc06317b57c2e0339c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
div.outer {
    align-items:    center;
    background:     #333;
    border-radius:  5px;
    color:          #fff;
    display:        flex;
    flex-direction: row;
    user-select:    none;
    vertical-align: middle;
    width:          fit-content;
}

div.outer:hover {
    background: #444;
}

div.outer-label {
    margin-right: auto;
    padding:      5px 5px 5px 10px;
}

div.outer-arrow {
    padding: 5px 10px 5px 5px;
}