Files
web/packages/design-system/lib/components/TextLink/textLink.module.css
Erik Tiekstra 3a38e99a71 Feat/BOOK-63 hotel subpages branding
* feat(BOOK-63): Replaced css variables and components to apply hotel branding on subpages
* feat(BOOK-63): Replaced css variables and components to apply hotel branding on hotel page map view

Approved-by: Christel Westerberg
Approved-by: Matilda Landström
2025-11-05 08:30:55 +00:00

35 lines
548 B
CSS

.textLink {
display: inline-flex;
align-items: center;
justify-content: center;
gap: var(--Space-x05);
padding: var(--Space-x025) 0;
}
.disabled {
color: var(--Text-Interactive-Disabled);
text-decoration: none;
cursor: default;
pointer-events: none;
}
.inline {
padding: 0;
}
.theme-primary:not(.disabled) {
color: var(--Text-Interactive-Secondary);
&:hover {
color: var(--Text-Interactive-Secondary-Hover);
}
}
.theme-inverted:not(.disabled) {
color: var(--Text-Inverted);
&:hover {
opacity: 0.7;
}
}