Skip to content

Commit 040dbd8

Browse files
Add global CSS import and create home module CSS
1 parent 18919a2 commit 040dbd8

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

app/layout.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
import '@/app/ui/global.css';
2+
13
export default function RootLayout({
24
children,
35
}: {

app/ui/home.module.css

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
.shape {
2+
height: 0;
3+
width: 0;
4+
border-bottom: 30px solid black;
5+
border-left: 20px solid transparent;
6+
border-right: 20px solid transparent;
7+
}

0 commit comments

Comments
 (0)