Skip to content

Commit

Permalink
calendar card changes
Browse files Browse the repository at this point in the history
  • Loading branch information
yceballost committed Nov 25, 2024
1 parent c6e6f0d commit 8c74fcb
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 3 additions & 2 deletions src/pages/advent-calendar-2024/components/calendar-card.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
IconLockEyeClosedFilled,
Circle,
IconChevronRightRegular,
IconArrowLineRightRegular,
} from "@telefonica/mistica";
import { useRef, useState } from "react";
import styles from "./calendar-card.module.css";
Expand Down Expand Up @@ -71,7 +72,7 @@ const CalendarCard = ({
case CARD_STATES.BLOCKED: {
cardStatusStyles = {
background: skinVars.colors.backgroundContainer,
border: `2px solid ${skinVars.colors.borderLow}`,
border: `2px solid ${skinVars.colors.border}`,
};
break;
}
Expand Down Expand Up @@ -229,7 +230,7 @@ const CalendarCard = ({

{(status === CARD_STATES.AVAILABLE || isRepeatable) && (
<Circle size={48} background={skinVars.colors.brand}>
<IconChevronRightRegular
<IconArrowLineRightRegular
size={24}
color={skinVars.colors.inverse}
/>
Expand Down
6 changes: 4 additions & 2 deletions src/pages/advent-calendar-2024/pages/coming-soon.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import {
Snackbar,
TelefonicaLogo,
skinVars,
Text3,
Text2,
} from "@telefonica/mistica";
import NavBar from "../components/navbar";
import DecorationSnake from "../assets/decorations/decoration-snake";
Expand Down Expand Up @@ -123,14 +125,14 @@ const ComingSoonPage = () => {
margin: "auto",
}}
>
<Text>
<Text2>
<p>
Get ready to experience the magic of the Mística Advent
Calendar. Every day brings a new surprise, filled with
inspiration, joy, and a touch of holiday magic to brighten
the end of your year.
</p>
</Text>
</Text2>
</div>
<div
style={{
Expand Down

0 comments on commit 8c74fcb

Please sign in to comment.