File size: 1,439 Bytes
440ee82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
8c42889
b243d3f
 
 
440ee82
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
b243d3f
 
 
 
80f3e35
b243d3f
80f3e35
b243d3f
440ee82
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
.jupyter-widgets.leaflet-widgets {
    height: 100%;
    border-radius: 20px;
}

.solara-autorouter-content {
    display: flex;
    flex-direction: column;
    justify-content: stretch;
}

.v-toolbar__title {
    display: flex;
    align-items: center;
    column-gap: 0.5rem;
}

.ui-container {
    height: 95vh;
    justify-content: center;
    padding: 45px 50px 75px 50px;
}

.chat-interface {
    height: 100%;
    width: 38vw;
    justify-content: center;
    position: relative;
}

.chat-interface:after {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1) 100%);
    width: 100%;
    height: 15%;
}

.map-container {
    width: 50vw;
    height: 100%;
    justify-content: center;
}

.v-application--wrap > div:nth-child(2) > div:nth-child(2){
    display: none !important;
}

@media screen and (max-aspect-ratio: 1/1) {
    .ui-container {
        padding: 30px;
        height: 100vh;
    }

    .container-row {
        flex-direction: column-reverse !important;
        width: 100% !important;
    }

    .chat-interface {
        width: unset;
        justify-content: flex-end;
    }

    .map-container {
        width: unset;
    }

    .link-container{
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 0 30px;
    }
}