Skip to content

Commit

Permalink
feat(category-filter): add "overflow-x: auto" to catergory bar style (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
sungik-choi authored May 29, 2023
2 parents a208233 + 55e6ce7 commit 957bd75
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .lintstagedrc
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"**/*.(js|ts)?(x)": ["yarn lint:fix", "yarn format", "yarn typecheck"]
"**/*.(js|ts)?(x)": ["yarn lint:fix", "yarn format"]
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"typecheck": "tsc --noEmit",
"semantic-release": "semantic-release",
"lint-staged": "lint-staged",
"pre-commit": "yarn lint-staged",
"pre-commit": "yarn lint-staged && yarn typecheck",
"postinstall": "husky install"
},
"dependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/components/catetgoryFilter/categoryFilter.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ const Divider = styled.div`
const CategoryUl = styled.ul`
display: flex;
list-style: none;
overflow-x: scroll;
overflow-x: auto;
-ms-overflow-style: none;
scrollbar-width: none;
Expand Down

0 comments on commit 957bd75

Please sign in to comment.