From ac235850a9287dae6977c964213176fa7c86b140 Mon Sep 17 00:00:00 2001 From: Tomas <tomasysh@gmail.com> Date: 星期四, 09 十二月 2021 14:42:20 +0800 Subject: [PATCH] Merge branch 'refactor/separate-vue' of ssh://192.168.0.10:29418/pcalife/PAM into refactor/separate-vue --- PAMapp/pages/myAppointmentList/my-appointment.component.scss | 26 ++++++++++++++++++++++++++ 1 files changed, 26 insertions(+), 0 deletions(-) diff --git a/PAMapp/pages/myAppointmentList/my-appointment.component.scss b/PAMapp/pages/myAppointmentList/my-appointment.component.scss new file mode 100644 index 0000000..46456ad --- /dev/null +++ b/PAMapp/pages/myAppointmentList/my-appointment.component.scss @@ -0,0 +1,26 @@ +.pam-myAppointment-banner { + width: 100%; + height: 120px; + background-size: cover; + background-repeat: no-repeat; + background-position: center; + position: relative; + background-image: url('~/assets/images/myAppointmentList/agent_banner_mob.svg'); +} + +@media (min-width: 768px) { + .pam-myAppointment-banner { + background-image: url('~/assets/images/myAppointmentList/agent_banner_web.svg'); + } +} + +.pam-container { + margin: 30px 20px; +} + +@include desktop { + .pam-container { + width: 700px; + margin: 30px auto; + } +} -- Gitblit v1.8.0