We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 292d2b8 commit 2dbe487Copy full SHA for 2dbe487
1 file changed
src/components/AppBar.vue
@@ -16,11 +16,9 @@
16
/>
17
</router-link>
18
<v-toolbar-title
19
- class="printer-title text--secondary font-weight-light text-h4 mr-5"
+ class="printer-title text--secondary mr-5"
20
>
21
- <router-link to="/">
22
- {{ instanceName }}
23
- </router-link>
+ <router-link to="/" v-html="instanceName"></router-link>
24
</v-toolbar-title>
25
<v-spacer />
26
@@ -130,9 +128,14 @@ export default class AppBar extends Mixins(UtilsMixin) {
130
128
131
129
<style lang="scss" scoped>
132
.printer-title {
+ font-size: 1.25rem;
+ font-weight: 300;
133
overflow: hidden;
134
white-space: nowrap;
135
text-overflow: ellipsis;
136
+ @media #{map-get($display-breakpoints, 'sm-and-up')} {
137
+ font-size: 2.125rem;
138
+ }
139
}
140
141
.printer-title > a {
0 commit comments