32 lines
410 B
CSS
32 lines
410 B
CSS
.pokemon-selector {
|
|
height: 70vh;
|
|
width: 20vw;
|
|
border: 1px solid #ccc;
|
|
border-radius: 5% / 3.5%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.pokemon-grid {
|
|
flex: 1 1 auto;
|
|
overflow-y: auto;
|
|
}
|
|
|
|
|
|
.pokemon-card {
|
|
cursor: pointer;
|
|
transition: transform 0.15s ease-in-out;
|
|
}
|
|
|
|
.pokemon-card:hover {
|
|
transform: scale(1.05);
|
|
}
|
|
|
|
.small-card {
|
|
font-size: 0.75rem;
|
|
}
|
|
|
|
|
|
|
|
|