Skip to content

Commit

Permalink
feat: Fix layout title
Browse files Browse the repository at this point in the history
  • Loading branch information
1ilsang committed Aug 19, 2023
1 parent e148def commit 9c8f908
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
3 changes: 2 additions & 1 deletion src/features/event/Container.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
import { FunctionComponent } from 'react';

import useEventContainer from './hooks/useEventContainer';
import './event.scss';

const EventContainer: FunctionComponent = () => {
useEventContainer();
return <div></div>;
return <div className="event-container"></div>;
};

export default EventContainer;
3 changes: 3 additions & 0 deletions src/features/event/event.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.event-container {
height: calc(100vh - 77px);
}
4 changes: 2 additions & 2 deletions src/features/shared/layout/layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@
height: 36px;
padding: 6px 8px;
gap: 10px;
font-weight: 500;
font-size: 24px;
font-weight: 700;
font-size: 16px;
line-height: 24px;

.logo {
Expand Down

0 comments on commit 9c8f908

Please sign in to comment.