🎨 Update styling and structure for improved UI/UX in Pokedex components and main application

This commit is contained in:
2026-01-28 04:37:34 +00:00
parent bcbcb36630
commit fe641a92b0
4 changed files with 149 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
min-height: 100vh;
}
#app {
min-height: 100vh;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}