This repository has been archived on 2025-09-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
repertory-ui/src/App.css
2019-04-09 12:18:57 -05:00

30 lines
478 B
CSS

.App {
display: flex;
flex-direction: column;
margin: 0;
padding: 10px;
box-sizing: border-box;
height: 100vh;
width: 100vw;
background-image: url('./assets/images/background.jpg');
background-size: cover;
}
.AppContainer {
display: flex;
flex-direction: column;
width: 100%;
height: 100%;
box-sizing: border-box;
}
.AppHeader {
height: 28px;
margin-bottom: 8px;
box-sizing: border-box;
}
.AppContent {
flex: 1;
box-sizing: border-box;
}