refactor: relocate components to app directory structure

This commit is contained in:
2026-06-09 14:43:10 +08:00
parent f060301c24
commit cda55c8f9b
61 changed files with 19 additions and 27 deletions
@@ -0,0 +1,47 @@
.wrapper {
position: relative;
flex: 1;
display: flex;
flex-direction: column;
width: 100%;
min-height: 100dvh;
overflow: hidden;
}
.gradientOverlay {
position: absolute;
inset: 0;
background: linear-gradient(
to top right,
var(--color-accent),
transparent 60%
);
opacity: 0.4;
z-index: 1;
pointer-events: none;
}
.content {
position: relative;
z-index: 2;
display: flex;
flex-direction: column;
flex: 1;
padding: var(--spacing-26) var(--spacing-26) var(--spacing-md);
}
.spacer {
flex: 1 1 auto;
}
.buttonArea {
margin-top: var(--spacing-26);
}
.bottom {
margin: var(--spacing-xxxl) 0 0 0;
font-size: var(--font-size-md);
line-height: 1.5;
color: rgba(255, 255, 255, 0.9);
text-align: center;
}