Skip to content

Commit

Permalink
[Fix] - Header css 수정5
Browse files Browse the repository at this point in the history
  • Loading branch information
developerjhp committed Mar 28, 2022
1 parent cf55f38 commit 51437fe
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion client/src/components/Notificationbar/styled.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import styled from 'styled-components';

export const NotificationContainer = styled.div`
position: absolute;
position: fixed;
bottom: 4rem;
left: 0;
padding: 3px;
Expand Down
1 change: 1 addition & 0 deletions client/src/components/PostEdit/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import styled from 'styled-components';
export const EditorContainer = styled.div`
display: grid;
grid-template-rows: 3.5rem auto;
margin-bottom: 4rem;
${({ theme }) => theme.media.tablet`
grid-template-rows: 2.5rem auto;
`}
Expand Down
1 change: 1 addition & 0 deletions client/src/pages/Detail/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export const PostContainer = styled.div`
export const DetailContainer = styled.div`
margin: 0.5rem;
word-spacing: 0.02rem;
margin-bottom: 4rem;
`;

export const Title = styled.div<{ state?: boolean }>`
Expand Down
2 changes: 1 addition & 1 deletion client/src/pages/Search/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const UtilPostWrap = styled.div`
`}
${({ theme }) => theme.media.desktop`
grid-template-rows: 1.8rem auto;
`}
`};
`;

export const UtilWrap = styled.div`
Expand Down
1 change: 0 additions & 1 deletion client/src/styles/styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@ export const PageContainer = styled.div`
width: 100vw;
background: #c4c4c4;
padding: 3px;
height: calc(100% - 4rem);
${({ theme }) => theme.media.tablet`
margin: auto 0;
width: 90vw;
Expand Down

0 comments on commit 51437fe

Please sign in to comment.