Skip to content

Commit

Permalink
style(log): buttonsWrapper로 클래스명 변경 (#50)
Browse files Browse the repository at this point in the history
- 버튼이 아닌 버튼들을 감싸는 명확한 역할 표현을 위해 클래스명 변경
------------------------------------------------------

------------------------------------------------------
  • Loading branch information
nanafromjeju committed Jan 11, 2025
1 parent e20702a commit b3afd6c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/(dashboard)/log/register/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const RegisterPage = () => {
<VehicleRegisterForm fields={formFields} />
</div>

<div className={styles.buttonWrapper}>
<div className={styles.buttonsWrapper}>
<SquareButton color={'white'}>취소</SquareButton>
<SquareButton color={'dark'}>등록</SquareButton>
</div>
Expand Down
2 changes: 1 addition & 1 deletion app/(dashboard)/log/register/styles.css.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export const formWrapper = style({
justifyContent: 'center',
})

export const buttonWrapper = style({
export const buttonsWrapper = style({
display: 'flex',
justifyContent: 'center',
gap: '20px',
Expand Down

0 comments on commit b3afd6c

Please sign in to comment.