fix(core): adjust workspace selector style in import page (#12916)

<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **Style**
- Updated padding for workspace selector elements to provide a more
uniform appearance.
- Adjusted container height and workspace selector width for improved
layout consistency.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Cats Juice 2025-06-25 09:03:55 +08:00 committed by GitHub
parent f0671cf2dd
commit 6813d84deb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 4 deletions

View File

@ -44,5 +44,5 @@ export const workspaceSelector = style({
margin: '0 -16px',
width: 'calc(100% + 32px)',
border: `1px solid ${cssVarV2('layer/insideBorder/border')}`,
padding: '0 16px',
padding: '6px',
});

View File

@ -10,6 +10,7 @@ export const container = style({
margin: '0 auto',
color: cssVarV2('text/primary'),
padding: '16px',
height: 'calc(100% - 48px)',
});
export const authHeader = style({
@ -47,8 +48,7 @@ export const mainButton = style({
});
export const workspaceSelector = style({
margin: '0 -16px',
width: 'calc(100% + 32px)',
width: '100%',
border: `1px solid ${cssVarV2('layer/insideBorder/border')}`,
padding: '0 16px',
padding: 6,
});