diff --git a/src/App.vue b/src/App.vue index 1144cb7..ca47dac 100644 --- a/src/App.vue +++ b/src/App.vue @@ -132,6 +132,12 @@ button::after { margin-bottom: 16px; } +.card-shadow { + background: #ffffff; + box-shadow: 0px 0px 16px 0px rgba(0, 0, 0, 0.04); + border-radius: 20rpx; +} + // 公共样式封装 .board { border-radius: 6px; diff --git a/src/components/quiz/item-new.vue b/src/components/quiz/item-new.vue index b06fb5d..b3c6c03 100644 --- a/src/components/quiz/item-new.vue +++ b/src/components/quiz/item-new.vue @@ -9,9 +9,11 @@ }) " > - - - + {{ data.nick_name }} @@ -20,8 +22,8 @@ - - {{ data.game_home_field }} VS {{ data.game_away }} + + {{ data.game_home_field }} vs {{ data.game_away }} {{ data.score }} diff --git a/src/components/quiz/item.vue b/src/components/quiz/item.vue index 2286b5c..28f7c0b 100644 --- a/src/components/quiz/item.vue +++ b/src/components/quiz/item.vue @@ -1,18 +1,25 @@