Files
frontend/src/pages/wallet/ui/WalletPage.module.css
2026-05-14 22:39:06 +03:00

63 lines
1.0 KiB
CSS

.page {
min-height: 100vh;
display: flex;
flex-direction: column;
background: var(--bg-deep);
}
.main {
flex: 1;
padding: 28px 32px 40px;
max-width: 1200px;
width: 100%;
margin: 0 auto;
position: relative;
}
.glow {
position: absolute;
top: -40px;
left: 50%;
transform: translateX(-50%);
width: 600px;
height: 320px;
background: radial-gradient(ellipse, rgba(61, 42, 142, 0.15), transparent 70%);
pointer-events: none;
z-index: 0;
}
.error {
display: flex;
align-items: center;
justify-content: center;
min-height: 100vh;
color: var(--error, #ff4466);
font-size: 14px;
}
.noWallet {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
gap: 24px;
min-height: 300px;
color: var(--text-primary);
font-size: 16px;
text-align: center;
position: relative;
z-index: 1;
}
@media (max-width: 992px) {
.glow {
width: auto;
height: auto;
}
}
@media (max-width: 900px) {
.main {
padding: 20px 16px 32px;
}
}