This repository has been archived on 2023-11-10. You can view files and clone it, but cannot push or open issues or pull requests.
freecodecamp-projects/3-frontend-dev-libraries/2-markdown-previewer/src/App.css

25 lines
548 B
CSS

.App {
height: 100vh;
width: 100vw;
background-color: #1d2228;
margin: 0;
display: flex;
flex-direction: row;
justify-content: space-evenly;
align-items: center;
overflow: hidden;
}
.App #editor, .App #preview {
margin: 0;
border: none;
border-radius: 5px;
overflow: scroll;
background-color: #fb8122;
box-shadow: rgba(136, 165, 191, 0.48) 6px 2px 16px 0px, rgba(255, 255, 255, 0.8) -6px -2px 16px 0px;
}
.App #editor img, .App #preview img {
max-width: 20rem;
height: auto;
}
/*# sourceMappingURL=App.css.map */