Skip to content
This repository was archived by the owner on Mar 13, 2025. It is now read-only.

Commit 3895574

Browse files
committed
fix overflow issue
1 parent c1660e5 commit 3895574

File tree

3 files changed

+6
-1
lines changed

3 files changed

+6
-1
lines changed

client/src/components/Header/style.module.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@
7272

7373
.downArrow {
7474
margin-left: 15px;
75+
overflow: hidden;
7576
}
7677

7778
.menu {

client/src/pages/Search/Global.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ export default function SearchGlobal({ keyword }) {
273273
{getOrderByText(orderBy)}
274274
</span>
275275
)}
276-
<DownArrowIcon />
276+
<DownArrowIcon className={style.downArrow} />
277277
{sortByDropdownShown && (
278278
<ul className={style.dropdown}>
279279
<li

client/src/pages/Search/style.module.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,10 @@
5656
margin-bottom: 100px;
5757
}
5858

59+
.downArrow {
60+
overflow: hidden;
61+
}
62+
5963
.pills {
6064
margin: 15px -5px 0;
6165
}

0 commit comments

Comments
 (0)