feat(BOOK-391): Added theme and logos for Bassin Seven

* chore: Updated border-radius variables after import change

Approved-by: Linus Flood
This commit is contained in:
Erik Tiekstra
2026-01-22 07:03:25 +00:00
parent ef98c4b552
commit 4de24e9f2a
297 changed files with 5252 additions and 648 deletions

View File

@@ -7,7 +7,7 @@
.content {
background-color: var(--Base-Surface-Primary-light-Normal);
border-radius: var(--Corner-radius-md);
border-radius: var(--Corner-Radius-md);
box-shadow: 0px 0px 8px 3px rgba(0, 0, 0, 0.1);
position: relative;
overflow: hidden;

View File

@@ -4,7 +4,7 @@
align-items: center;
padding: var(--Space-x05) var(--Space-x1) var(--Space-x05) var(--Space-x05);
border: 2px solid var(--Base-Surface-Primary-light-Normal);
border-radius: var(--Corner-radius-rounded);
border-radius: var(--Corner-Radius-Rounded);
background-color: var(--Base-Surface-Primary-light-Normal);
box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
gap: var(--Space-x1);

View File

@@ -20,7 +20,7 @@
justify-content: center;
align-items: center;
padding: var(--Space-x05);
border-radius: var(--Corner-radius-rounded);
border-radius: var(--Corner-Radius-Rounded);
background-color: var(--Surface-UI-Fill-Default);
box-shadow: 0 0 4px 2px rgba(0, 0, 0, 0.1);
gap: var(--Space-x1);

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View File

@@ -22,6 +22,8 @@ import {
type HotelType,
} from "@scandic-hotels/common/constants/hotelType"
import { MarkerInfo } from "../types"
import { BassinSevenMarker } from "./HotelMarker/SignatureHotel/BassinSeven"
import { BassinSevenSmallMarker } from "./HotelMarker/SignatureHotel/BassinSevenSmall"
export interface HotelMarkerByTypeProps
extends MarkerInfo, React.SVGAttributes<HTMLOrSVGElement> {
@@ -97,4 +99,8 @@ const bySignatureHotel: Record<
large: TheDockMarker,
small: TheDockSmallMarker,
},
[SignatureHotelEnum.BassinSeven]: {
large: BassinSevenMarker,
small: BassinSevenSmallMarker,
},
}

View File

@@ -2,7 +2,7 @@
display: flex;
justify-content: center;
align-items: center;
border-radius: var(--Corner-radius-rounded);
border-radius: var(--Corner-Radius-Rounded);
background-color: var(--Surface-Feedback-Neutral);
> span {