We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8ee4df2 commit 606617bCopy full SHA for 606617b
1 file changed
src/app/components/CardHeaderWithResponsiveActions/index.tsx
@@ -2,6 +2,16 @@ import CardHeader, { cardHeaderClasses } from '@mui/material/CardHeader'
2
import { styled } from '@mui/material/styles'
3
4
export const CardHeaderWithResponsiveActions = styled(CardHeader)(({ theme }) => ({
5
+ [`.${cardHeaderClasses.content}`]: {
6
+ flex: 0,
7
+ textWrap: 'nowrap',
8
+ },
9
+ [`.${cardHeaderClasses.action}`]: {
10
+ marginLeft: theme.spacing(4),
11
+ flex: 1,
12
+ alignSelf: 'auto',
13
+ textAlign: 'end',
14
15
[theme.breakpoints.down('md')]: {
16
display: 'inline',
17
alignItems: 'flex-start',
0 commit comments