Files
mern-template/client/src/styles/styles.css
2021-02-03 18:19:58 +02:00

40 lines
757 B
CSS

body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu',
'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.App {
width: 100%;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.App > p {
text-align: center;
}
/*
Extra Small Devices, Phones
@media only screen and (min-width: 480px) {}
*/
/*
Small Devices, Tablets
@media only screen and (min-width: 768px) {}
*/
/*
Medium Devices, Desktops
@media only screen and (min-width: 992px) {}
*/
/*
Large Devices, Wide Screens
@media only screen and (min-width: 1200px) {}
*/