refactor(frontend): drop unused Bulma form/file partial import

Every file input in the codebase is hidden (via class="is-hidden" or
scoped display:none) and triggered programmatically by a custom XButton.
None of Bulma's .file / .file-label / .file-cta / .file-input / .file-name /
.file-icon classes are used anywhere in .vue files, so the partial is dead
code.
This commit is contained in:
kolaente 2026-04-15 12:40:40 +02:00 committed by kolaente
parent 39c804f460
commit 95180a341d
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@
@import "bulma-css-variables/sass/form/input-textarea";
@import "bulma-css-variables/sass/form/checkbox-radio";
@import "bulma-css-variables/sass/form/select";
@import "bulma-css-variables/sass/form/file";
// @import "bulma-css-variables/sass/form/file"; // not used; every file input is hidden and triggered via a custom button
@import "bulma-css-variables/sass/form/tools";