Skip to content

Commit c1f0848

Browse files
committed
fix: styles
1 parent 093cda4 commit c1f0848

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

src/app/[lang]/projects/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ export default async function Projects({
1212

1313
return (
1414
<>
15-
<h1 className="text-3xl font-bold text-blue-500 mb-4">
15+
<h1 className="text-3xl font-bold text-blue-500 lg:mb-4">
1616
{dictionary.PROJECTS.TITLE}
1717
</h1>
18-
<section className="my-4 text-justify text-lg w-full">
18+
<section className="my-2 lg:my-4 text-justify text-lg w-full">
1919
{dictionary.PROJECTS.DESCRIPTION}
2020
<ul className="flex flex-col gap-3 my-4 text-left">
2121
<li className="list-disc ml-6">

src/app/[lang]/stack/page.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,10 @@ export default async function Stack({ params }: { params: { lang: Locale } }) {
1616

1717
return (
1818
<>
19-
<h1 className="text-3xl font-bold text-blue-500 mb-4">
19+
<h1 className="text-3xl font-bold text-blue-500 lg:mb-4">
2020
{dictionary.STACK.TITLE}
2121
</h1>
22-
<p className="my-4 text-justify text-lg w-full">
22+
<p className="my-2 lg:my-4 text-justify text-lg w-full">
2323
{dictionary.STACK.DESCRIPTION}
2424
</p>
2525
<StackSection

src/components/organisms/personal-info-section.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ export const PersonalInfoSection = ({
2929
{dictionary.SOFT_SKILLS.LIST.map((skill) => (
3030
<li
3131
key={skill}
32-
className="bg-black/[0.7] px-4 py-2 text-sm tracking-wider text-white rounded-full dark:text-white/70"
32+
className="bg-black/[0.7] text-sm tracking-wider text-white rounded-full dark:text-white/70 dark:bg-white/10 flex items-center px-4 py-2"
3333
>
3434
{skill}
3535
</li>

0 commit comments

Comments
 (0)