feat(assets): add initial fonts and image assets

This commit is contained in:
2026-06-09 15:47:20 +08:00
parent cda55c8f9b
commit e2f60bc4f2
41 changed files with 207 additions and 70 deletions
@@ -1,7 +1,61 @@
.wrapper {
display: flex;
flex-direction: column;
gap: var(--spacing-md);
flex-direction: row;
align-items: center;
justify-content: center;
gap: var(--spacing-26);
width: 100%;
z-index: 2;
}
.skip {
font-family: var(--font-athelas);
font-size: var(--font-size-xxl);
font-weight: 700;
color: #ffffff;
background: transparent;
border: 0;
cursor: pointer;
padding: 0;
}
.skip:disabled {
opacity: 0.5;
cursor: not-allowed;
}
.separator {
width: var(--spacing-26);
height: 1px;
}
.facebookButton {
height: 48px;
padding: 0 30px;
border: 0;
border-radius: 24px;
background: linear-gradient(
to right,
#fff96ade,
#fff657a0
);
color: #ffffff;
font-weight: 700;
cursor: pointer;
display: inline-flex;
align-items: center;
justify-content: center;
box-shadow: 0 0 10px rgba(248, 89, 168, 0.3);
}
.facebookButton:disabled {
cursor: not-allowed;
opacity: 0.7;
}
.facebookLabel {
font-family: var(--font-athelas);
font-size: var(--font-size-xxl);
font-weight: 700;
color: #ffffff;
}