Skip to content

Commit 62adbb4

Browse files
authored
allow component to inherit font family choices
I ran into this issue where the component was using the browser's default san-serif font, which of course we don't use. This will allow it to just take the font from the application its used in and continue on without much friction.
1 parent 867a74c commit 62adbb4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/Select.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<style>
22
.v-select {
33
position: relative;
4-
font-family: sans-serif;
4+
font-family: inherit;
55
}
66
77
.v-select,

0 commit comments

Comments
 (0)