added settings modal, assets

This commit is contained in:
plebbitor
2023-03-15 15:25:09 +01:00
parent a18af8562c
commit 92e34fa5e8
13 changed files with 245 additions and 4 deletions
+23 -1
View File
@@ -4,7 +4,6 @@ import Modal from 'react-modal';
import styled from 'styled-components';
const StyledModal = styled(Modal)`
.modal-content {
width: 400px;
height: 300px;
@@ -51,6 +50,29 @@ const StyledModal = styled(Modal)`
border: 1px solid #777;
outline: none;
}
${({ selectedStyle }) => {
switch (selectedStyle) {
case 'Yotsuba':
return ``;
case 'Yotsuba B':
return ``;
case 'Futaba':
return ``;
case 'Burichan':
return ``;
case 'Tomorrow':
return ``;
case 'Photon':
return ``;
}
}}
`;
const customOverlayStyles = {