Skip to content

Commit

Permalink
Fixed pill padding for organisations.
Browse files Browse the repository at this point in the history
  • Loading branch information
knirirr committed Jan 29, 2024
1 parent 3ab3761 commit 168a1f2
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/views/Organisations/Organisation.vue
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
v-for="type in organisation.types"
:key="type + '_type'"
variant="elevated"
class="mr-1"
class="ma-1"
>
{{ type }}
</v-chip>
Expand All @@ -76,7 +76,7 @@
:href="orgUrl() + parent.id"
color="light-blue"
variant="elevated"
class="mr-1"
class="ma-1"
>
{{ parent.name }}
</v-chip>
Expand All @@ -95,7 +95,7 @@
:href="orgUrl() + child.id"
color="light-blue"
variant="elevated"
class="mr-1"
class="ma-1"
>
{{ child.name }}
</v-chip>
Expand All @@ -114,7 +114,7 @@
:href="getUserLink() + user.id"
color="light-blue"
variant="elevated"
class="mr-1"
class="ma-1"
>
{{ formatUser(user) }}
</v-chip>
Expand All @@ -131,7 +131,7 @@
v-for="country in organisation.countries"
:key="'country_' + country.id"
variant="elevated"
class="mr-1"
class="ma-1"
>
{{ country.name }}
</v-chip>
Expand Down

0 comments on commit 168a1f2

Please sign in to comment.