From 0ffebf4a9728605bb419f22256750118d07e7092 Mon Sep 17 00:00:00 2001 From: Johannes Werner Date: Wed, 11 Aug 2021 03:03:44 +0200 Subject: [PATCH] feat(apollo-example): add border-radius to image --- src/pages/example/apollo.vue | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/pages/example/apollo.vue b/src/pages/example/apollo.vue index 380b3457..f257d54e 100644 --- a/src/pages/example/apollo.vue +++ b/src/pages/example/apollo.vue @@ -89,5 +89,12 @@ export default defineComponent({ .apollo { padding-top: $navbar-height; + + .card { + img { + border-radius: $card-border-radius $card-border-radius 0 0; + width: 100%; + } + } }