Skip to content

Commit

Permalink
fix(scroll): change to hideScrollBar
Browse files Browse the repository at this point in the history
  • Loading branch information
minjoo0729 committed Nov 22, 2023
1 parent 37af34d commit f94658b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web/src/components/organisms/AgendaSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import {
isPreparingAgenda,
} from "@biseo/web/utils/agenda";

import { scroll } from "@biseo/web/styles";
import { hideScrollBar, scroll } from "@biseo/web/styles";
import { css } from "@emotion/react";

const gridLayout = css`
Expand Down Expand Up @@ -73,7 +73,7 @@ export const AgendaSection: React.FC = () => {
);

return (
<section css={[scroll.y, scroll.hidden]}>
<section css={[scroll.y, hideScrollBar]}>
<div css={gridLayout}>
<AgendaCard.Group agendaStatus="ongoing">
{getAgendaCards("ongoing")}
Expand Down

0 comments on commit f94658b

Please sign in to comment.