Merged in fix/close-map-text (pull request #3536)

feat(map): fixed close map text alignment

* feat(map): fixed close map text alignment
This commit is contained in:
Linus Flood
2026-02-03 14:07:40 +00:00
parent eb45e6b294
commit dd65467573
2 changed files with 3 additions and 3 deletions

View File

@@ -177,12 +177,12 @@ export function SelectHotelMapContent({
> >
<MaterialIcon icon="close" size={20} color="CurrentColor" /> <MaterialIcon icon="close" size={20} color="CurrentColor" />
<Typography variant="Body/Supporting text (caption)/smBold"> <Typography variant="Body/Supporting text (caption)/smBold">
<p> <span>
{intl.formatMessage({ {intl.formatMessage({
id: "selectHotel.closeMap", id: "selectHotel.closeMap",
defaultMessage: "Close the map", defaultMessage: "Close the map",
})} })}
</p> </span>
</Typography> </Typography>
</Link> </Link>
</Button> </Button>

View File

@@ -29,7 +29,7 @@
.link { .link {
display: flex; display: flex;
gap: var(--Space-x05); gap: var(--Space-x05);
align-items: baseline; align-items: center;
} }
.bookingCodeFilter { .bookingCodeFilter {