style(MinAppsPage): adjust padding for AppsContainerWrapper based on navbar position

- Increased padding for the AppsContainerWrapper to 50px for better spacing.
- Added conditional padding for when the navbar is positioned at the top, reverting to 20px for improved layout consistency.
This commit is contained in:
kangfenmao 2025-07-24 18:08:03 +08:00
parent 16a4ddc8fa
commit cd68736263

View File

@ -148,8 +148,11 @@ const AppsContainerWrapper = styled(Scrollbar)`
flex: 1;
flex-direction: row;
justify-content: center;
padding: 20px 0;
padding: 50px 0;
width: 100%;
[navbar-position='top'] & {
padding: 20px 0;
}
`
const AppsContainer = styled.div`