Skip to content

Commit c0a2662

Browse files
committed
🔨 Fix CTA button styles
1 parent 4d6f48d commit c0a2662

File tree

1 file changed

+21
-1
lines changed

1 file changed

+21
-1
lines changed

frontend/src/views/BookerView/components/BookingViewSuccess.vue

Lines changed: 21 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ const downloadUrl = `${apiUrl}/apmt/serve/ics/${props.selectedEvent.slug}/${prop
7777
<primary-button @click="router.push({ name: 'home' })">
7878
{{ user.authenticated ? t('label.dashboard') : t('label.subscribe') }}
7979
<template #iconRight>
80-
<ph-arrow-right />
80+
<ph-arrow-right weight="bold" />
8181
</template>
8282
</primary-button>
8383
</div>
@@ -181,5 +181,25 @@ const downloadUrl = `${apiUrl}/apmt/serve/ics/${props.selectedEvent.slug}/${prop
181181
font-size: 0.875rem;
182182
color: var(--colour-neutral-lower);
183183
}
184+
185+
:deep(.base.primary.filled) {
186+
position: relative;
187+
z-index: 1;
188+
background-image: linear-gradient(161deg, #a0e1ff -26%, #2b8cdc 45%);
189+
color: var(--colour-ti-base);
190+
text-transform: uppercase;
191+
font-weight: 600;
192+
font-size: 0.8125rem;
193+
194+
&::before {
195+
content: '';
196+
position: absolute;
197+
z-index: -1;
198+
width: calc(100% - 2px);
199+
height: calc(100% - 2px);
200+
background-image: linear-gradient(353deg, #1373d9 -36%, #58c9ff);
201+
border-radius: .5rem;
202+
}
203+
}
184204
}
185205
</style>

0 commit comments

Comments
 (0)