feat: moved next app to its own package (resolves #21)

This commit is contained in:
Anoop M D
2022-10-09 16:13:11 +05:30
parent b3a317dc4d
commit 539cdef9ca
151 changed files with 6100 additions and 18647 deletions

View File

@@ -0,0 +1,16 @@
import styled from 'styled-components';
const StyledWrapper = styled.div`
div.CodeMirror {
border: solid 1px var(--color-codemirror-border);
/* todo: find a better way */
height: calc(100vh - 250px);
}
textarea.cm-editor {
position: relative;
}
`;
export default StyledWrapper;