I have just successfully installed the components in Vue and Sass however I'd like to be able to change the themeing a bit to suit my design. I've tried overriding default styles for the button to change the font family after the import statements, but when I use chrome dev tools the styling I have a applied is there but is being overrode by the default styling somehow. Are there any variables we can change for the font family or is there something I'm doing wrong overriding these styles?
TLDR - The following doesn't work
@import '~@syncfusion/ej2-base/styles/fabric.css';
@import '~@syncfusion/ej2-buttons/styles/fabric.css';
@import '~@syncfusion/ej2-calendars/styles/fabric.css';
@import '~@syncfusion/ej2-dropdowns/styles/fabric.css';
@import '~@syncfusion/ej2-inputs/styles/fabric.css';
@import '~@syncfusion/ej2-navigations/styles/fabric.css';
@import '~@syncfusion/ej2-popups/styles/fabric.css';
@import '~@syncfusion/ej2-vue-schedule/styles/fabric.css';
.e-toolbar .e-tbar-btn {
font-family: "Roboto", sans-serif !important;
}