22 lines
591 B
CSS
22 lines
591 B
CSS
.container {
|
|
background-color: var(--Main-Grey-White);
|
|
display: grid;
|
|
}
|
|
|
|
.wrapper {
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: column;
|
|
gap: var(--Spacing-x5);
|
|
padding: var(--Spacing-x4) var(--Spacing-x2) var(--Spacing-x5);
|
|
}
|
|
|
|
/* TODO: Remove when we get proper button variables */
|
|
.link {
|
|
font-family: var(--typography-Body-Bold-fontFamily);
|
|
font-size: var(--typography-Body-Bold-fontSize);
|
|
font-weight: var(--typography-Body-Bold-fontWeight);
|
|
letter-spacing: var(--typography-Body-Bold-letterSpacing);
|
|
line-height: var(--typography-Body-Bold-lineHeight);
|
|
}
|