aboutsummaryrefslogtreecommitdiff
path: root/ufund-ui/src/app/components/mini-need-list/mini-need-list.component.css
blob: 090bea9e9fe486a6239c8af5010aca9d847c9c5d (plain) (blame)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
:host {
    display: flex;
    flex-direction: column;
    border: solid rgba(255, 255, 255, 0.5) 1px;
    border-radius: 5px;
}

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    border-bottom: solid rgba(255, 255, 255, 0.5) 1px;
    padding: 10px;

    a {
        display: flex;
    }
}

#needList {
    display: flex;
    flex-direction: row;
    padding: 10px;
    gap: 10px;
    justify-content: start;
    overflow: auto;
}

.needEntry {
    padding: 10px;
    display: flex;
    flex-direction: column;
    background-color: #3a3a3a;
    border-radius: 5px;
    height: 175px;
    width: 200px;
    justify-content: space-between;

    div {
        display: flex;
        flex-direction: column;
    }

    user-select: none;
    cursor: pointer;
}

.needName {
    font-weight: bold;
}

.needType {
    text-transform: uppercase;
    /*font-weight: 300;*/
    font-size: 10pt;
}