Skip to content

Commit

Permalink
feat: menu button 흰색 배경 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
pipisebastian committed Nov 15, 2024
1 parent aca483a commit e30425d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 1 addition & 0 deletions client/src/components/sidebar/MenuButton.style.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ export const imageBox = css({
borderRadius: "sm",
width: "50px",
height: "50px",
background: "white",
overflow: "hidden",
});

Expand Down
4 changes: 1 addition & 3 deletions client/src/components/sidebar/MenuButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,7 @@ import { menuItemWrapper, imageBox, textBox } from "./MenuButton.style";
export const MenuButton = () => {
return (
<div className={menuItemWrapper}>
<div className={imageBox}>
<img src="https://via.placeholder.com/50" />
</div>
<div className={imageBox}></div>
<p className={textBox}>Noctturn</p>
</div>
);
Expand Down

0 comments on commit e30425d

Please sign in to comment.