Browse Source

fix: increase CSS specificity for menu border override

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
pull/11646/head
afc163 2 months ago
parent
commit
6317bd1f7b
  1. 6
      src/pages/account/settings/style.style.ts

6
src/pages/account/settings/style.style.ts

@ -19,19 +19,19 @@ const useStyles = createStyles(({ token }) => {
}, },
leftMenu: { leftMenu: {
width: '224px', width: '224px',
'.ant-menu-inline': { border: 'none' }, borderRight: `${token.lineWidth}px solid ${token.colorSplit}`,
'.ant-menu-inline': { border: 'none !important' },
'.ant-menu-horizontal': { fontWeight: 'bold' }, '.ant-menu-horizontal': { fontWeight: 'bold' },
[`@media screen and (max-width: ${token.screenMD}px)`]: { [`@media screen and (max-width: ${token.screenMD}px)`]: {
width: '100%', width: '100%',
border: 'none',
}, },
}, },
right: { right: {
flex: '1', flex: '1',
padding: '8px 40px', padding: '8px 40px',
borderInlineStart: `${token.lineWidth}px solid ${token.colorSplit}`,
[`@media screen and (max-width: ${token.screenMD}px)`]: { [`@media screen and (max-width: ${token.screenMD}px)`]: {
padding: '40px', padding: '40px',
border: 'none',
}, },
}, },
title: { title: {

Loading…
Cancel
Save