Skip to content

Commit 4054511

Browse files
authored
Merge pull request #54 from MBTips/style/반응형-breakpoint-설정
chore: index.css에 breakpoint 추가
2 parents 7084cb7 + 3ca327d commit 4054511

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
import PrimaryButton from "@/components/button/PrimaryButton";
2+
3+
const ChatStartButton = () => {
4+
return (
5+
<PrimaryButton size="md">
6+
대화 시작하기
7+
</PrimaryButton>
8+
)
9+
}
10+
11+
export default ChatStartButton;

src/index.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,10 @@
3232
--text-md--line-height: 18px;
3333
--text-sm: 10px;
3434
--text-sm--line-height: 15px;
35+
36+
—breakpoint-sm: 345px;
37+
—breakpoint-md: 375px;
38+
—breakpoint-lg: 500px;
3539
}
3640

3741
:root {

0 commit comments

Comments
 (0)