Skip to content

Commit

Permalink
Merge pull request #63 from SWM-FIRE/FIRE-328-fe-채팅-레이아웃-구성
Browse files Browse the repository at this point in the history
FIRE-238 fix chatting height
  • Loading branch information
haryung-lee authored Jul 19, 2022
2 parents 869f9b4 + d3dcdc9 commit f271855
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/components/room/Chatting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Component = styled.div`
flex-direction: column;
align-items: flex-start;
justify-content: space-between;
height: 100%;
height: calc(100% - 17.8rem);
font-family: IBMPlexSansKRRegular;
font-size: 1.3rem;
color: #6b7280;
Expand Down
3 changes: 1 addition & 2 deletions src/components/room/Sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ export default function Sidebar() {

const Component = styled.div`
position: absolute;
/* background-color: rgba(22, 29, 52, 1); */
background-color: #29292e;
margin: 2rem 2rem 2rem 2rem;
border-radius: 1rem;
padding: 3rem 2rem;
width: 40rem;
right: 0;
top: 0;
height: -webkit-fill-available;
height: calc(100vh - 14rem);
`;

1 comment on commit f271855

@vercel
Copy link

@vercel vercel bot commented on f271855 Jul 19, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@haryung-lee is attempting to deploy a commit to a Personal Account on Vercel that is not owned by them.

In order for the commit to be deployed, @haryung-lee must be granted access to the connected Vercel project.

If you're the owner of the Personal Account, transfer the project to a Vercel Team and start collaborating, or learn more.

Please sign in to comment.