Skip to content

Commit

Permalink
style: automatic eslint fix
Browse files Browse the repository at this point in the history
Signed-off-by: Fernando Fernández <[email protected]>
  • Loading branch information
ferferga committed Oct 22, 2024
1 parent 97d6aa5 commit 67d0309
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion frontend/src/components/Item/Card/GenericItemCard.vue
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
:class="shape"
class="elevation-2">
<div
class="d-flex justify-center align-center absolute-cover card-content">
class="d-flex align-center justify-center absolute-cover card-content">
<JSlot class="card-image">
<slot
name="image" />
Expand Down
6 changes: 3 additions & 3 deletions frontend/src/components/Item/ItemGrid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@
:class="useResponsiveClasses('card-grid-container')">
<ItemCard
:item="item"
text
margin
overlay
link />
link
text
overlay />
</JVirtual>
<div
v-else
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Item/Metadata/ImageEditor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
</div>
<div
v-if="item.Width && item.Height"
class="text-center text--secondary text-body-2">
class="text-center text-body-2 text--secondary">
{{ t('dimensions', { width: item.Width, height: item.Height }) }}
</div>
<VCardActions class="justify-center">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
<RouterLink
v-else-if="itemLink && titleString"
data-swiper-parallax="-300"
class="link d-block text-h4 text-truncate text-sm-h3 text-sm-h2"
class="link d-block text-truncate text-h4 text-sm-h3 text-sm-h2"
:to="itemLink">
{{ titleString }}
</RouterLink>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Layout/SettingsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<VContainer>
<VRow v-if="$slots.title">
<VCol>
<VRow class="mt-4 mx-0 mb-2 justify-space-between">
<VRow class="mt-4 mb-2 mx-0 justify-space-between">
<h2 class="text-h4">
<slot name="title" />
</h2>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/layouts/server.vue
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
app
color="transparent">
<LocaleSwitcher
top
elevated />
elevated
top />
</VFooter>
</template>

Expand Down

0 comments on commit 67d0309

Please sign in to comment.