0278fe6ae4
This reverts commit 39c1906e67.
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
17 lines
289 B
CSS
17 lines
289 B
CSS
@layer components {
|
|
.profile-layout {
|
|
display: flex;
|
|
gap: var(--inline-space);
|
|
|
|
@media (min-width: 800px) {
|
|
align-items: stretch;
|
|
justify-content: center;
|
|
}
|
|
|
|
@media (max-width: 799px) {
|
|
align-items: center;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
}
|