diff --git a/examples/tuono-tutorial/src/components/PokemonView.module.css b/examples/tuono-tutorial/src/components/PokemonView.module.css index 504c93f3..98c12f99 100644 --- a/examples/tuono-tutorial/src/components/PokemonView.module.css +++ b/examples/tuono-tutorial/src/components/PokemonView.module.css @@ -2,6 +2,10 @@ display: flex; justify-content: space-between; margin-top: 20px; + border-radius: 18px; + box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px; + padding: 16px 32px; + background: white; } .name { @@ -10,13 +14,17 @@ } .pokemon img { - width: 400px; + width: 250px; } .spec { display: flex; font-size: 18px; margin-top: 10px; + + > dt { + margin-right: 6px; + } } .label {