aboutsummaryrefslogtreecommitdiff
path: root/css/manage/_client.scss
blob: 36ff66aced2c0f6baffe2b05efbc8937f1d702bc (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#manage-client-page {
    //$h: calc(var(--nav-height) + calc(var(--main-padding) * 2));
    //height: calc(100vh - $h);
    width: 100%;

    .clients-list-wrapper {
        .clients-list {
            .clients-list-item {
                border-bottom: 1px solid var(--link-fg);
                display: flex;
                flex-direction: column;
                gap: 1rem;

                .header {
                    display: flex;
                    align-items: center;
                    gap: 0.5em;
                    font-size: 1.4em;

                    .client-name {
                        font-weight: bold;
                    }

                    .client-gstin {
                        font-size: 0.8em;
                        color: var(--body-fg-alt);
                    }
                }

                .details {
                    margin: auto;
                    width: 98%;
                    display: grid;
                    grid-template-columns: 1fr 1fr 2fr;

                    .contact-info, .client-address {
                        display: flex;
                        flex-direction: column;

                        .title {
                            font-weight: bold;
                        }
                    }
                }
            }
        }
    }
}