diff options
| author | Lionel Han <47760119+IGoByJoe@users.noreply.github.com> | 2020-06-22 17:47:15 -0700 |
|---|---|---|
| committer | Lionel Han <47760119+IGoByJoe@users.noreply.github.com> | 2020-06-22 17:47:15 -0700 |
| commit | b989082c3502e8ad5ca3a89a8459e6ac72e38ccc (patch) | |
| tree | 7d1c0b09d26d6cb33555569cd164da1c7043e89e /src/mobile/AudioUpload.scss | |
| parent | 6df649ae1228f191a5654e45e898880b130afd28 (diff) | |
| parent | 790d41009a678f560cd3b78e86069251e494cfd1 (diff) | |
pull
Diffstat (limited to 'src/mobile/AudioUpload.scss')
| -rw-r--r-- | src/mobile/AudioUpload.scss | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/mobile/AudioUpload.scss b/src/mobile/AudioUpload.scss new file mode 100644 index 000000000..9fe442e55 --- /dev/null +++ b/src/mobile/AudioUpload.scss @@ -0,0 +1,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; +}
\ No newline at end of file |
