Skip to content

Commit 65da893

Browse files
authored
Merge pull request #934 from amitamrutiya/workspace
fix: workspace card formatting issue
2 parents 968af22 + f3d3869 commit 65da893

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/custom/ResourceDetailFormatters/styles.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,7 @@ export const CodeFormatterPre = styled('pre')(({ theme }) => ({
189189
wordBreak: 'break-all',
190190
margin: 0,
191191
padding: '0.5rem',
192-
maxWidth: '-moz-available'
192+
maxWidth: '100%'
193193
}));
194194

195195
export const TextValue = styled(Box)({

src/custom/ResponsiveDataTable.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ const dataTableTheme = (theme: Theme, backgroundColor?: string) =>
152152
MuiPaper: {
153153
styleOverrides: {
154154
root: {
155-
maxWidth: '-moz-available'
155+
maxWidth: '100%'
156156
}
157157
}
158158
},

src/custom/Workspaces/styles.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@ export const DescriptionGrid = styled(Grid)({
344344
});
345345

346346
export const AllocationColumnGrid = styled(Grid)({
347-
width: '-moz-available'
347+
width: '100%'
348348
});
349349

350350
export const CardWrapper = styled(Card)(({ theme }) => ({

0 commit comments

Comments
 (0)