Skip to content

Commit 75972ec

Browse files
author
Gareth Redfern
committed
remove appearance-none class from file upload input
1 parent 8aa5b14 commit 75972ec

File tree

1 file changed

+1
-7
lines changed

1 file changed

+1
-7
lines changed

src/components/FileUpload.vue

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,7 @@
44
<label for="file" class="sr-only">
55
{{ label }}
66
</label>
7-
<input
8-
type="file"
9-
:accept="fileTypes"
10-
@change="fileChange"
11-
id="file"
12-
class="appearance-none"
13-
/>
7+
<input type="file" :accept="fileTypes" @change="fileChange" id="file" />
148
</div>
159
<BaseBtn text="Upload" />
1610
<FlashMessage :message="message" :error="error" />

0 commit comments

Comments
 (0)