Skip to content

Commit 71c6f9d

Browse files
committed
refactor: modify base style
1 parent 152af5f commit 71c6f9d

File tree

2 files changed

+25
-15
lines changed

2 files changed

+25
-15
lines changed

app/assets/css/tailwind.css

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -52,15 +52,15 @@
5252
--popover-foreground: oklch(0.145 0 0);
5353
--primary: oklch(0.205 0 0);
5454
--primary-foreground: oklch(0.985 0 0);
55-
--secondary: oklch(0.97 0 0);
55+
--secondary: oklch(0.94 0 0);
5656
--secondary-foreground: oklch(0.205 0 0);
57-
--muted: oklch(0.97 0 0);
57+
--muted: oklch(0.94 0 0);
5858
--muted-foreground: oklch(0.556 0 0);
59-
--accent: oklch(0.97 0 0);
59+
--accent: oklch(0.94 0 0);
6060
--accent-foreground: oklch(0.205 0 0);
6161
--destructive: oklch(0.577 0.245 27.325);
62-
--border: oklch(0.922 0 0);
63-
--input: oklch(0.922 0 0);
62+
--border: oklch(0.85 0 0);
63+
--input: oklch(0.85 0 0);
6464
--ring: oklch(0.708 0 0);
6565
--chart-1: oklch(0.646 0.222 41.116);
6666
--chart-2: oklch(0.6 0.118 184.704);
@@ -71,9 +71,9 @@
7171
--sidebar-foreground: oklch(0.145 0 0);
7272
--sidebar-primary: oklch(0.205 0 0);
7373
--sidebar-primary-foreground: oklch(0.985 0 0);
74-
--sidebar-accent: oklch(0.97 0 0);
74+
--sidebar-accent: oklch(0.94 0 0);
7575
--sidebar-accent-foreground: oklch(0.205 0 0);
76-
--sidebar-border: oklch(0.922 0 0);
76+
--sidebar-border: oklch(0.85 0 0);
7777
--sidebar-ring: oklch(0.708 0 0);
7878
}
7979

@@ -93,8 +93,8 @@
9393
--accent: oklch(0.269 0 0);
9494
--accent-foreground: oklch(0.985 0 0);
9595
--destructive: oklch(0.704 0.191 22.216);
96-
--border: oklch(1 0 0 / 10%);
97-
--input: oklch(1 0 0 / 15%);
96+
--border: oklch(1 0 0 / 18%);
97+
--input: oklch(1 0 0 / 22%);
9898
--ring: oklch(0.556 0 0);
9999
--chart-1: oklch(0.488 0.243 264.376);
100100
--chart-2: oklch(0.696 0.17 162.48);
@@ -107,7 +107,7 @@
107107
--sidebar-primary-foreground: oklch(0.985 0 0);
108108
--sidebar-accent: oklch(0.269 0 0);
109109
--sidebar-accent-foreground: oklch(0.985 0 0);
110-
--sidebar-border: oklch(1 0 0 / 10%);
110+
--sidebar-border: oklch(1 0 0 / 18%);
111111
--sidebar-ring: oklch(0.556 0 0);
112112
}
113113

app/pages/sobre.vue

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@
2929
<div class="mb-10">
3030
<p class="text-stone-600 leading-relaxed mb-4 text-[15px]">
3131
Sou Patrick Luz, engenheiro de software com +5 anos de experiência em
32-
empresas como Mercado Livre, Inter e Hurst Capital. Transformo ideias
33-
em produtos digitais escaláveis e de alta qualidade.
32+
empresas como Mercado Livre, Inter e Hurst Capital. Transformo ideias em
33+
produtos digitais escaláveis e de alta qualidade.
3434
</p>
3535
<p class="text-stone-600 leading-relaxed text-[15px]">
3636
Trabalho com todo o ciclo de desenvolvimento — do planejamento à
@@ -152,7 +152,9 @@
152152
<h3 class="font-medium text-stone-800 text-[15px]">
153153
{{ exp.title }}
154154
</h3>
155-
<p class="text-xs text-stone-400 mb-2">{{ exp.period }} · {{ calculateDuration(exp.period) }}</p>
155+
<p class="text-xs text-stone-400 mb-2">
156+
{{ exp.period }} · {{ calculateDuration(exp.period) }}
157+
</p>
156158
<p class="text-stone-600 text-sm leading-relaxed">
157159
{{ exp.description }}
158160
</p>
@@ -216,7 +218,9 @@
216218
<h2 class="text-lg font-semibold text-stone-900 mb-3">
217219
Formação acadêmica
218220
</h2>
219-
<p class="text-stone-500 text-[15px] mb-6">Minha trajetória educacional.</p>
221+
<p class="text-stone-500 text-[15px] mb-6">
222+
Minha trajetória educacional.
223+
</p>
220224

221225
<div class="space-y-6">
222226
<div v-for="edu in education" :key="edu.institution" class="flex gap-4">
@@ -301,5 +305,11 @@ useSeoMeta({
301305
});
302306
303307
const { metricsAbout: metrics, serviceCategories } = useContent();
304-
const { experiences, education, skillCategories, testimonials, calculateDuration } = useProfile();
308+
const {
309+
experiences,
310+
education,
311+
skillCategories,
312+
testimonials,
313+
calculateDuration,
314+
} = useProfile();
305315
</script>

0 commit comments

Comments
 (0)