diff options
author | Alec Di Vito <me@alecdivito.com> | 2025-02-22 18:44:16 +0000 |
---|---|---|
committer | Alec Di Vito <me@alecdivito.com> | 2025-02-22 18:44:16 +0000 |
commit | 577044ddbd70f5f128512c1a021329fb4c7e7eb3 (patch) | |
tree | 58e00fda45a09c5d6f1ab96a11f86aae1bbf2889 /data/style.scss | |
parent | feat: implement temporary file uploads and tweak mobile design (diff) | |
download | miniserve-577044ddbd70f5f128512c1a021329fb4c7e7eb3.tar.gz miniserve-577044ddbd70f5f128512c1a021329fb4c7e7eb3.zip |
feat: address comments; add in new argument (`temp-directory`); add comments to upload code; add tests
Diffstat (limited to '')
-rw-r--r-- | data/style.scss | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/data/style.scss b/data/style.scss index 2e02c44..828146a 100644 --- a/data/style.scss +++ b/data/style.scss @@ -54,7 +54,9 @@ $upload_container_height: 18rem; } #upload-toggle { + display: none; transition: transform 0.3s ease; + cursor: pointer; } } @@ -694,6 +696,11 @@ th span.active span { right: 0; left: 0; } + + #upload-toggle { + display: block; + transition: transform 0.3s ease; + } } .upload_container { |