parent
2075d04b6e
commit
812e4bf382
5 changed files with 31 additions and 20 deletions
@ -1,15 +0,0 @@ |
||||
import styled from 'styled-components' |
||||
|
||||
const EpubViewerWrapper = styled.div` |
||||
width: 100%; |
||||
box-sizing: border-box; |
||||
margin: 0 auto; |
||||
|
||||
& > div { |
||||
&::-webkit-scrollbar { |
||||
display: none; |
||||
} |
||||
} |
||||
`;
|
||||
|
||||
export default EpubViewerWrapper |
@ -0,0 +1,12 @@ |
||||
/** |
||||
* EpubViewer wrapper style |
||||
*/ |
||||
const styles: { |
||||
boxSizing: any, |
||||
margin: any |
||||
} = { |
||||
boxSizing: "border-box", |
||||
margin: "0px auto" |
||||
} |
||||
|
||||
export default styles |
Loading…
Reference in new issue