-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #265 from TeamBookTez/develop
[Release] ๋ฒ๊ทธ ์์ ๋ฐ ์ฝ๋ ๊ฐ์ ๋ v1.1.0 ๋ฐฐํฌํฉ๋๋ค.
- Loading branch information
Showing
53 changed files
with
369 additions
and
413 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,28 +1,12 @@ | ||
import React from "react"; | ||
import styled from "styled-components"; | ||
|
||
import { StBookModalWrapper } from "../common/styled/BookModalWrapper"; | ||
|
||
interface ModalWrapperProps { | ||
children: React.ReactNode; | ||
} | ||
export default function ModalWrapper(props: ModalWrapperProps) { | ||
const { children } = props; | ||
|
||
return <StModalWrapper>{children}</StModalWrapper>; | ||
return <StBookModalWrapper>{children}</StBookModalWrapper>; | ||
} | ||
|
||
export const StModalWrapper = styled.div` | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
justify-content: center; | ||
width: 100%; | ||
height: 100%; | ||
position: fixed; | ||
z-index: 10; | ||
left: 0; | ||
top: 0; | ||
background-color: ${({ theme }) => theme.colors.white}; | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
export { default as AddBookDefault } from "./AddBookDefault"; | ||
export { default as BookEmpty } from "./BookEmpty"; | ||
export { default as BookInfoWrapper } from "./BookInfoWrapper"; | ||
export { default as BookList } from "./BookList"; | ||
export { default as ModalWrapper } from "./ModalWrapper"; | ||
export { default as SearchBar } from "./SearchBar"; | ||
export { default as ShowModal } from "./ShowModal"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.