Skip to content

Commit

Permalink
Remove parameterization of font-family
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobtylerwalls committed Oct 7, 2024
1 parent 5f5debf commit d7a338b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,6 @@ const expandNode = (node: TreeNode) => {
<PresentationControls
:expand-all
:collapse-all
font-family="sans-serif"
/>
</div>
</template>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,10 +20,9 @@ const { $gettext } = useGettext();
const selectedLanguage = inject(selectedLanguageKey) as Ref<Language>;
const { expandAll, collapseAll, fontFamily } = defineProps<{
const { expandAll, collapseAll } = defineProps<{
expandAll: () => void;
collapseAll: () => void;
fontFamily: string;
}>();
</script>

Expand Down Expand Up @@ -68,7 +67,6 @@ const { expandAll, collapseAll, fontFamily } = defineProps<{
root: { class: 'secondary-button' },
label: { style: { alignSelf: 'center' } },
optionLabel: { style: { fontSize: 'small' } },
overlay: { style: { fontFamily } },
}"
/>
</div>
Expand Down

0 comments on commit d7a338b

Please sign in to comment.