Skip to content

Commit

Permalink
fix: change file name into uppercase
Browse files Browse the repository at this point in the history
  • Loading branch information
whalekiller03 committed Jan 15, 2024
1 parent 5fbea47 commit f8fa163
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 1 deletion.
43 changes: 43 additions & 0 deletions pages/signin/Signin.styled.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
import styled from '@emotion/styled';

export const HomePageWrapper = styled.div`
--section-height: calc(100vh - 80px);
--section-height-offset: 80px;
background: linear-gradient(0deg, #f3fcfc, #f3fcfc), #f7f8fa;
`;

export const StyledContentWrapper = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #fff;
border-radius: 16px;
margin: 60px auto;
max-width: 50%;
width: 100%;
@media (max-width: 767px) {
max-width: 80%;
.title {
text-overflow: ellipsis;
width: 100%;
}
}
h2 {
font-weight: 700;
font-size: 22px;
line-height: 140%;
text-align: center;
color: #536166;
margin-top: 40px;
}
`;

export const StyledQuestionInput = styled.div`
display: flex;
flex-direction: column;
justify-content: center;
align-items: flex-start;
margin-top: 20px;
`;
2 changes: 1 addition & 1 deletion pages/signin/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import {
HomePageWrapper,
StyledContentWrapper,
StyledQuestionInput,
} from './signin.styled';
} from './Signin.styled';

function EditPage() {
const router = useRouter();
Expand Down

0 comments on commit f8fa163

Please sign in to comment.