fix: refactor buttons on card grid
This commit is contained in:
@@ -1,15 +1,82 @@
|
||||
.linkCard {
|
||||
.container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 37rem;
|
||||
height: 48rem;
|
||||
width: 100%;
|
||||
margin-right: 1.6rem;
|
||||
border-radius: 1.6rem;
|
||||
gap: 1rem;
|
||||
padding: 1.6rem;
|
||||
gap: var(--x2, 16px);
|
||||
padding: 0px 3.2rem;
|
||||
|
||||
background-color: var(--Base-Fill-Normal);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.themeOne {
|
||||
--font-color: var(--Brand-Main-Strong, #4d001b);
|
||||
--script-color: var(--UI-Red-70, #ad0015);
|
||||
--divider-color: var(--UI-Red-10, #f7c1c2);
|
||||
|
||||
background: var(--Theme-Primary-Light-Surface-Normal, #f7e1d5);
|
||||
}
|
||||
|
||||
.themeTwo {
|
||||
--font-color: var(--Brand-Forest-Strong, #093021);
|
||||
--script-color: var(--UI-Green-70, #286806);
|
||||
--divider-color: var(--UI-Green-10, #badda8);
|
||||
|
||||
background: var(--Brand-Forest-Subtle, #d2edaf);
|
||||
}
|
||||
|
||||
.themeThree {
|
||||
--font-color: var(--Brand-Sea-Strong, #0d1440);
|
||||
--script-color: var(--UI-Blue-70, #1555b4);
|
||||
--divider-color: var(--UI-Blue-10, #c7d9f5);
|
||||
|
||||
background: var(--Brand-Sea-Accent, #fff0c2);
|
||||
}
|
||||
|
||||
.scriptContainer {
|
||||
display: grid;
|
||||
gap: 1rem;
|
||||
}
|
||||
|
||||
.scriptedTitle {
|
||||
color: var(--script-color);
|
||||
|
||||
font-family: var(--ff-biro-script-plus);
|
||||
font-size: var(--Script-1, 2.4rem);
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 110%; /* 1.65rem */
|
||||
letter-spacing: 0.03rem;
|
||||
padding: 1rem;
|
||||
|
||||
transform: rotate(-3deg);
|
||||
}
|
||||
|
||||
.divider {
|
||||
border-bottom-color: var(--divider-color);
|
||||
}
|
||||
|
||||
.heading {
|
||||
color: var(--font-color);
|
||||
}
|
||||
|
||||
.bodyText {
|
||||
color: var(--font-color);
|
||||
text-align: center;
|
||||
|
||||
font-size: 16px;
|
||||
font-style: normal;
|
||||
font-weight: 400;
|
||||
line-height: 150%;
|
||||
letter-spacing: 0.096px;
|
||||
}
|
||||
|
||||
.buttonContainer {
|
||||
display: flex;
|
||||
gap: 0.8rem;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user