Skip to content

Commit

Permalink
[Design] Global Style 세팅
Browse files Browse the repository at this point in the history
- 모든 화면에서 공유할 Global Style 세팅
- box-sizing, margin, list-style 관련 설정

Issues #20
  • Loading branch information
novice1993 committed Aug 29, 2023
1 parent ba141a6 commit 8079c5b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
5 changes: 5 additions & 0 deletions client/src/App.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* {
box-sizing: border-box;
margin: 0px;
list-style: none;
}
2 changes: 2 additions & 0 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
import "./App.css";

function App() {
return <div></div>;
}
Expand Down

0 comments on commit 8079c5b

Please sign in to comment.