File tree 5 files changed +6
-6
lines changed
5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
- <div :style =" $vuetify.breakpoint.name === 'xs' ? 'margin-bottom: 56px' : undefined" >
2
+ <div :style =" $vuetify.breakpoint.xs ? 'margin-bottom: 56px' : undefined" >
3
3
<toolbar-sticky v-if =" selectedCollections.length === 0" >
4
4
<!-- Action menu -->
5
5
<library-actions-menu v-if =" library"
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div :style =" $vuetify.breakpoint.name === 'xs' ? 'margin-bottom: 56px' : undefined" >
2
+ <div :style =" $vuetify.breakpoint.xs ? 'margin-bottom: 56px' : undefined" >
3
3
<toolbar-sticky v-if =" selectedSeries.length === 0" >
4
4
<!-- Action menu -->
5
5
<library-actions-menu v-if =" library"
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div :style =" $vuetify.breakpoint.name === 'xs' ? 'margin-bottom: 56px' : undefined" >
2
+ <div :style =" $vuetify.breakpoint.xs ? 'margin-bottom: 56px' : undefined" >
3
3
<toolbar-sticky v-if =" selectedReadLists.length === 0" >
4
4
<!-- Action menu -->
5
5
<library-actions-menu v-if =" library"
Original file line number Diff line number Diff line change 1
1
<template >
2
- <div :style =" $vuetify.breakpoint.name === 'xs' ? 'margin-bottom: 56px' : undefined" >
2
+ <div :style =" $vuetify.breakpoint.xs ? 'margin-bottom: 56px' : undefined" >
3
3
<toolbar-sticky v-if =" individualLibrary && selectedSeries.length === 0" >
4
4
<!-- Action menu -->
5
5
<library-actions-menu v-if =" library"
@@ -311,7 +311,7 @@ export default Vue.extend({
311
311
return this .$store .getters .meAdmin
312
312
},
313
313
fixedCardWidth(): number {
314
- return this .$vuetify .breakpoint .name === ' xs ' ? 120 : 150
314
+ return this .$vuetify .breakpoint .xs ? 120 : 150
315
315
},
316
316
allEmpty(): boolean {
317
317
return this .loaderNewSeries ?.items .length === 0 &&
Original file line number Diff line number Diff line change @@ -249,7 +249,7 @@ export default Vue.extend({
249
249
return this .$store .getters .meAdmin
250
250
},
251
251
fixedCardWidth(): number {
252
- return this .$vuetify .breakpoint .name === ' xs ' ? 120 : 150
252
+ return this .$vuetify .breakpoint .xs ? 120 : 150
253
253
},
254
254
showToolbar(): boolean {
255
255
return this .selectedSeries .length === 0 && this .selectedBooks .length === 0 && this .selectedCollections .length === 0 && this .selectedReadLists .length === 0
You can’t perform that action at this time.
0 commit comments