Merged in fix/BOOK-529-new-icon (pull request #3290)

Fix/BOOK-529 new icon

* fix(BOOK-529): add new icon, remove scroll again

* fix(BOOK-529): remove divider when no saved card


Approved-by: Joakim Jäderberg
This commit is contained in:
Bianca Widstam
2025-12-04 07:46:20 +00:00
parent 30b9d14fb0
commit e459eb17f4
8 changed files with 11 additions and 6 deletions

View File

@@ -9,3 +9,7 @@
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
.form::-webkit-scrollbar {
display: none;
}

View File

@@ -161,7 +161,7 @@ export default function Form({ error }: FormProps) {
</p> </p>
</Typography> </Typography>
</div> </div>
{savedCreditCards && <Divider />} {!!savedCreditCards?.length && <Divider />}
<SelectPaymentMethod <SelectPaymentMethod
paymentMethods={(savedCreditCards ?? []).map((card) => ({ paymentMethods={(savedCreditCards ?? []).map((card) => ({
...card, ...card,

View File

@@ -26,7 +26,7 @@ export default function GuaranteeLateArrival() {
} }
const text = intl.formatMessage({ const text = intl.formatMessage({
id: "myStay.gla.heading", id: "myStay.gla.addLateArrivalGuarantee",
defaultMessage: "Add late arrival guarantee", defaultMessage: "Add late arrival guarantee",
}) })
@@ -35,7 +35,7 @@ export default function GuaranteeLateArrival() {
<ActionsButton <ActionsButton
onPress={trackGuaranteeLateArrival} onPress={trackGuaranteeLateArrival}
text={text} text={text}
icon="check" icon="lock_clock"
/> />
<Modal> <Modal>
<GuaranteeDialog /> <GuaranteeDialog />

View File

@@ -276,7 +276,7 @@
font-style: normal; font-style: normal;
font-weight: 400; font-weight: 400;
font-display: block; font-display: block;
src: url(/_static/shared/fonts/material-symbols/rounded-fa2883c6.woff2) src: url(/_static/shared/fonts/material-symbols/rounded-0ce1d4ea.woff2)
format('woff2'); format('woff2');
} }

View File

@@ -152,6 +152,7 @@ const icons = [
"location_city", "location_city",
"location_on", "location_on",
"lock", "lock",
"lock_clock",
"loyalty", "loyalty",
"luggage", "luggage",
"mail", "mail",

View File

@@ -1,3 +1,3 @@
Auto-generated, do not edit. Use scripts/material-symbols-update.mts to update. Auto-generated, do not edit. Use scripts/material-symbols-update.mts to update.
hash=fa2883c6 hash=0ce1d4ea
created=2025-12-01T10:31:09.165Z created=2025-12-03T15:14:42.683Z

Binary file not shown.