Skip to content

Commit

Permalink
Fix spacing with VRow (#395)
Browse files Browse the repository at this point in the history
  • Loading branch information
robbevp authored Jan 9, 2021
1 parent 2575eda commit 3531ce8
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 24 deletions.
2 changes: 1 addition & 1 deletion src/components/AlbumForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -201,7 +201,7 @@
v-model="clear_review_comment"
:label="$tc('music.flag.clear', 1)"
/>
<VRow justify="center">
<VRow justify="center my-0">
<VBtn :disabled="!isValid" color="primary" class="ma-2" type="submit">
{{
this.album ? $t("music.album.update") : $t("music.album.create")
Expand Down
2 changes: 1 addition & 1 deletion src/components/EditReviewComment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
/>
</VCardText>
<VCardActions>
<VRow justify="end">
<VRow justify="end my-0">
<VBtn color="primary" class="ma-2" type="submit" @click="flag">
{{ $t("music.flag.for-review") }}
</VBtn>
Expand Down
2 changes: 1 addition & 1 deletion src/components/Player.vue
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
</table>
</div>

<VRow class="player-controls" align="center">
<VRow class="player-controls" align="center my-0">
<div class="flex player-left">
<div class="content">
<VBtn
Expand Down
12 changes: 6 additions & 6 deletions src/views/Home.vue
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<h2 class="text-h4">{{ $t("home.recently-released") }}</h2>
</template>
<template v-slot:default="props">
<VRow>
<VRow class="my-0">
<VCol
v-for="item in props.items"
:key="item.id"
Expand Down Expand Up @@ -47,7 +47,7 @@
</h2>
</template>
<template v-slot:default="props">
<VRow>
<VRow class="my-0">
<VCol
v-for="item in props.items"
:key="item.id"
Expand Down Expand Up @@ -79,7 +79,7 @@
</h2>
</template>
<template v-slot:default="props">
<VRow>
<VRow class="my-0">
<VCol
v-for="item in props.items"
:key="item.id"
Expand Down Expand Up @@ -114,7 +114,7 @@
</v-alert>
</template>
<template v-slot:default="props">
<VRow>
<VRow class="my-0">
<VCol
v-for="item in props.items"
:key="item.id"
Expand Down Expand Up @@ -147,7 +147,7 @@
</h2>
</template>
<template v-slot:default="props">
<VRow>
<VRow class="my-0">
<VCol
v-for="item in props.items"
:key="item.id"
Expand Down Expand Up @@ -179,7 +179,7 @@
</h2>
</template>
<template v-slot:default="props">
<VRow>
<VRow class="my-0">
<VCol
v-for="item in props.items"
:key="item.id"
Expand Down
22 changes: 11 additions & 11 deletions src/views/Library.vue
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
<template>
<VContainer fluid v-if="isModerator">
<vue-headful :title="$t('library-settings') + ' | Accentor'" />
<VRow>
<VRow class="mb-2">
<h2 class="text-h5">{{ $t("library.maintenance") }}</h2>
</VRow>
<VRow>
<VRow class="mb-4">
<MaintenanceActions />
</VRow>
<VRow>
<VRow class="mb-2">
<h2 class="text-h5">{{ $t("library.rescan") }}</h2>
</VRow>
<VRow v-if="rescan">
<VRow v-if="rescan" class="mb-2">
<VBtn
@click="start"
:disabled="rescanRunning"
Expand All @@ -24,7 +24,7 @@
{{ $t("library.start-scan") }}
</VBtn>
</VRow>
<VRow class="flex-column" v-if="rescan">
<VRow class="flex-column mb-4" v-if="rescan">
<div>
<strong>{{ $t("library.finished-at") }}: </strong>
{{
Expand All @@ -50,41 +50,41 @@
<pre class="text-body-2">{{ rescan.error_text }}</pre>
</div>
</VRow>
<VRow>
<VRow class="mb-2">
<h2 class="text-h5">{{ $t("library.codecs") }}</h2>
</VRow>
<VRow>
<VCol cols="12">
<EditCodecs />
</VCol>
</VRow>
<VRow>
<VRow class="mb-2">
<h2 class="text-h5">{{ $t("library.codec-conversions") }}</h2>
</VRow>
<VRow>
<VCol cols="12">
<EditCodecConversions />
</VCol>
</VRow>
<VRow>
<VRow class="mb-2">
<h2 class="text-h5">{{ $t("library.cover-filenames") }}</h2>
</VRow>
<VRow>
<VCol cols="12">
<EditCoverFilenames />
</VCol>
</VRow>
<VRow>
<VRow class="mb-2">
<h2 class="text-h5">
{{ $t("library.image-types") }}
</h2>
</VRow>
<VRow>
<VRow class="mb-2">
<VCol cols="12">
<EditImageTypes />
</VCol>
</VRow>
<VRow>
<VRow class="mb-2">
<h2 class="text-h5">{{ $t("library.locations") }}</h2>
</VRow>
<VRow>
Expand Down
4 changes: 2 additions & 2 deletions src/views/flags/Flags.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
:items-per-page="6"
>
<template v-slot:default="props">
<VRow>
<VRow class="mb-0">
<VCol
v-for="item in props.items"
:key="`artist${item.id}`"
Expand Down Expand Up @@ -41,7 +41,7 @@
:items-per-page="6"
>
<template v-slot:default="props">
<VRow>
<VRow class="mb-0">
<VCol
v-for="item in props.items"
:key="`album${item.id}`"
Expand Down
4 changes: 2 additions & 2 deletions src/views/users/User.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@
<VContainer fluid v-if="user">
<vue-headful :title="user.name + ' | Accentor'" />
<VRow>
<div>
<VCol>
<div class="text-h4">{{ user.name }}</div>
<span class="grey--text">
{{ user.permission }}
</span>
</div>
</VCol>
</VRow>
</VContainer>
</template>
Expand Down

0 comments on commit 3531ce8

Please sign in to comment.