From 8079c5b241265a64cd8dca224301b42988b11820 Mon Sep 17 00:00:00 2001 From: novice1993 Date: Tue, 29 Aug 2023 10:08:30 +0900 Subject: [PATCH] =?UTF-8?q?[Design]=20Global=20Style=20=EC=84=B8=ED=8C=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 모든 화면에서 공유할 Global Style 세팅 - box-sizing, margin, list-style 관련 설정 Issues #20 --- client/src/App.css | 5 +++++ client/src/App.tsx | 2 ++ 2 files changed, 7 insertions(+) create mode 100644 client/src/App.css diff --git a/client/src/App.css b/client/src/App.css new file mode 100644 index 00000000..d311f9ca --- /dev/null +++ b/client/src/App.css @@ -0,0 +1,5 @@ +* { + box-sizing: border-box; + margin: 0px; + list-style: none; +} diff --git a/client/src/App.tsx b/client/src/App.tsx index 6f74d94b..5dca6532 100644 --- a/client/src/App.tsx +++ b/client/src/App.tsx @@ -1,3 +1,5 @@ +import "./App.css"; + function App() { return
; }