Skip to content

Commit

Permalink
fix: fix margin
Browse files Browse the repository at this point in the history
  • Loading branch information
yoonhyejin committed Nov 15, 2024
1 parent bcd9e02 commit 77f3c51
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ function DropdownNavbarItemDesktop({
...props
}: DesktopOrMobileNavBarItemProps) {
const dropdownRef = useRef<HTMLDivElement>(null);
const [showDropdown, setShowDropdown] = useState(true); // false
const [showDropdown, setShowDropdown] = useState(false);

useEffect(() => {
const handleClickOutside = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@ function SolutionsDropdownContent() {
</div>
<div className={clsx(styles.description)}>{item.description}</div>
</div>
{/* <div
className={clsx(styles.cardImgWrapper)}
style={{ backgroundImage: `url(${item.backgroundImage})` }}>
</div> */}
</div>
</Link>
</div>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
.container {
width: 100%;
padding: 2rem;
padding: 1rem;
border-radius: 30px;
}

.row {
Expand Down Expand Up @@ -28,8 +29,6 @@
background-repeat: no-repeat;
background-size: contain;
background-position: bottom right;
overflow: hidden;
min-height: 200px;
height: 100%;
}

Expand Down

0 comments on commit 77f3c51

Please # to comment.