diff options
author | Orangerot <purple@orangerot.dev> | 2024-12-10 06:28:50 +0100 |
---|---|---|
committer | Orangerot <purple@orangerot.dev> | 2024-12-10 06:28:50 +0100 |
commit | f08b0b4d51f1ba0f003cd9bffd6b481a92ae52de (patch) | |
tree | f0e69ae356b3f6cf2d0ba346d0d19ffef4e1a76a /style.css | |
parent | 76872c7bdec8ba2c681ebb752899f43cdd74941a (diff) |
feat: use webcam to take picture
Diffstat (limited to 'style.css')
-rw-r--r-- | style.css | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -8,10 +8,23 @@ canvas { max-height: 100%; } -body:not(.editor-enabled) .is-visible-editor { +video { + width: 100%; + height: 100%; +} + +body:not(.import-active) .is-visible-import { + display: none !important; +} + +body:not(.camera-active) .is-visible-camera { + display: none !important; +} + +body:not(.editor-active) .is-visible-editor { display: none !important; } -body.editor-enabled .is-hidden-editor { +body.import-active .is-hidden-import { display: none !important; } |