Skip to content

Commit

Permalink
fix(contact): use secondary color for background
Browse files Browse the repository at this point in the history
  • Loading branch information
Michriko committed Feb 10, 2024
1 parent c6efc7b commit 351fdcb
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/components/contact.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<v-container class="secondary text-center" fluid>
<v-container class="bg-secondary text-center" fluid>
<h2>Kontakt</h2>
<p class="py-3">
Sie erreichen mich unter Xing, LinkedIn, oder per Mail. Ich freue mich auf
Expand All @@ -10,8 +10,9 @@
<v-btn
:href="contactType.url"
:icon="contactType.icon"
size="x-large"
target="_blank"
x-large
variant="plain"
v-on:click="onButtonClick(contactType)"
>
</v-btn>
Expand Down
2 changes: 1 addition & 1 deletion src/components/tech/techCard.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<v-card class="py-4 h-100">
<v-icon x-large>{{ props.icon }}</v-icon>
<v-icon size="x-large">{{ props.icon }}</v-icon>
<v-card-title class="block text-center">{{ title }}</v-card-title>
<v-card-text>
<v-chip v-for="(item, index) in description" :key="index" class="ma-1">
Expand Down

0 comments on commit 351fdcb

Please sign in to comment.