aboutsummaryrefslogtreecommitdiff
path: root/src/mobile/AudioUpload.scss
blob: 9fe442e55c29614d92d19214002c47820bfc8300 (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
@import "../client/views/globalCssVariables.scss";

.audioUpload_cont {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    min-width: 400px;
}

.audio-upload {
    top: 100%;
    opacity: 0;
}

.audio-upload.active {
    top: 0;
    position: absolute;
    z-index: 999;
    height: 100vh;
    width: 100vw;
    opacity: 1;
}