Fix missing upload button (#2393)

The code snippet `input[type=file]{ display: none;}` was unintentionally hiding the upload button, to fix this, it was changed to only target input within `.input-container`
This commit is contained in:
Omar Ahmed Hassan 2024-12-05 13:16:16 +02:00 committed by GitHub
parent d888ed1ae0
commit 0e3865618d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,7 @@
z-index: 2;
}
input[type="file"] {
.input-container input[type="file"] {
display: none;
}