Skip to content

Commit c59cde2

Browse files
committed
feat: apply break words globaly and remove unused Image
1 parent 91e76b2 commit c59cde2

File tree

2 files changed

+19
-14
lines changed

2 files changed

+19
-14
lines changed

src/app/globals.css

Lines changed: 19 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,32 @@
11
@import "tailwindcss";
22

33
:root {
4-
--background: #ffffff;
5-
--foreground: #171717;
4+
--background: #ffffff;
5+
--foreground: #171717;
66
}
77

88
@theme inline {
9-
--color-background: var(--background);
10-
--color-foreground: var(--foreground);
11-
--font-sans: var(--font-geist-sans);
12-
--font-mono: var(--font-geist-mono);
9+
--color-background: var(--background);
10+
--color-foreground: var(--foreground);
11+
--font-sans: var(--font-geist-sans);
12+
--font-mono: var(--font-geist-mono);
1313
}
1414

1515
@media (prefers-color-scheme: dark) {
16-
:root {
17-
--background: #0a0a0a;
18-
--foreground: #ededed;
19-
}
16+
:root {
17+
--background: #0a0a0a;
18+
--foreground: #ededed;
19+
}
20+
}
21+
22+
@layer base {
23+
* {
24+
@apply break-words;
25+
}
2026
}
2127

2228
body {
23-
background: var(--background);
24-
color: var(--foreground);
25-
font-family: var(--font-lato-sans), sans-serif;
29+
background: var(--background);
30+
color: var(--foreground);
31+
font-family: var(--font-lato-sans), sans-serif;
2632
}

src/app/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import Image from "next/image";
21
import Link from "next/link";
32

43
const timeline = [

0 commit comments

Comments
 (0)