Skip to content

Commit

Permalink
Merge pull request #569 from sahitya-chandra/error-toolbar.vue
Browse files Browse the repository at this point in the history
Fixed the error related to expected CSS shorthand usage and added a generic font-family in src/components/molecules/Toolbar.vue
  • Loading branch information
marcgc21 authored Feb 7, 2025
2 parents c04592e + 76e2a02 commit cbf1b6f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/molecules/Toolbar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@
<v-btn
dark
text
style="text-transform: none !important; font: Roboto; font-size: 17px"
style="text-transform: none !important; font-family: Roboto, sans-serif; font-size: 17px"
@click.stop="signOut()"
>
{{ $t('buttons.signout') }}
Expand Down Expand Up @@ -183,7 +183,7 @@
</v-btn>
</template>
<v-list dense class="ma-0 py-1" style="border-radius: 0px !important">
<v-list-item dense style="font-size: 14px; font: Roboto" class="px-2">
<v-list-item dense style="font-size: 14px; font-family: Roboto, sans-serif" class="px-2">
<v-list-item-content>
<v-list-item-title style="font-weight: bold">
{{ $t('buttons.username') }}
Expand All @@ -205,7 +205,7 @@
<div class="divider" />
<v-list-item
dense
style="font-size: 14px; font: Roboto"
style="font-size: 14px; font-family: Roboto, sans-serif"
class="px-2"
@click="signOut(), (menu = false)"
>
Expand Down Expand Up @@ -407,7 +407,7 @@ export default {
<style scoped>
.console-button {
font-size: 13px;
font: Roboto;
font-family: Roboto, sans-serif;
text-transform: none !important;
padding: 7px !important;
}
Expand Down

0 comments on commit cbf1b6f

Please sign in to comment.