Skip to content

Commit 3d858ac

Browse files
authored
Limit Max Width of all containers to 1180px (#1123)
Signed-off-by: Daniel Valdivia <[email protected]>
1 parent 573049e commit 3d858ac

File tree

3 files changed

+252
-236
lines changed

3 files changed

+252
-236
lines changed

portal-ui/src/screens/Console/Buckets/ListBuckets/ListBuckets.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,9 @@ const styles = (theme: Theme) =>
114114
marginLeft: 10,
115115
},
116116
...containerForHeader(theme.spacing(4)),
117+
constrainedContainer: {
118+
maxWidth: 1180,
119+
},
117120
});
118121

119122
interface IListBucketsProps {

portal-ui/src/screens/Console/Common/FormComponents/common/styleLibrary.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@ export const radioIcons = {
133133
export const containerForHeader = (bottomSpacing: any) => ({
134134
container: {
135135
position: "relative" as const,
136+
maxWidth: 1180,
136137
padding: "20px 35px 0",
137138
"& h6": {
138139
color: "#777777",

0 commit comments

Comments
 (0)