pokertk/src/index.css

39 lines
823 B
CSS
Raw Normal View History

.app_container {
display: flex;
flex-direction: column;
align-items: center;
justify-items: center;
min-height: 100vh;
}
body {
margin: 0;
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;
background-image: url('./assets/bg.png');
background-size: initial;
background-repeat: repeat;
}
code {
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
monospace;
}
2023-03-23 21:45:20 +11:00
.pokemon__container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
2023-03-26 18:20:17 +11:00
}
2023-04-17 22:34:18 +10:00
.all__pokemons {
display: flex;
flex-wrap: wrap;
align-items: center;
justify-content: center;
}