Skip to content

Commit

Permalink
Change background color to white
Browse files Browse the repository at this point in the history
  • Loading branch information
Seheon Yu committed Oct 25, 2023
1 parent c0ee33f commit 9524241
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
14 changes: 14 additions & 0 deletions src/app/globals.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
:root {
--foreground-rgb: 0, 0, 0;
}

body {
color: rgb(var(--foreground-rgb));
}

textarea,
select,
input,
button {
outline: none;
}
7 changes: 5 additions & 2 deletions src/app/layout.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
import React from 'react';

import './globals.css';
import './tailwind.css';

export const metadata = {
title: 'GiftHub',
description: '당신의 기프티콘을 편하게 관리하세요.',
Expand All @@ -11,8 +14,8 @@ export default function RootLayout({
children: React.ReactNode;
}) {
return (
<html>
<body>{children}</body>
<html className=' bg-white h-full'>
<body className='h-full'>{children}</body>
</html>
);
}
3 changes: 3 additions & 0 deletions src/app/tailwind.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

0 comments on commit 9524241

Please sign in to comment.