Skip to content

Commit

Permalink
Update content container width
Browse files Browse the repository at this point in the history
  • Loading branch information
Yan Xu committed Jan 23, 2025
1 parent 0c47330 commit eca1192
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/client/src/components/AppContent.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const AppContent = () => {
<CContainer className="px-4" lg>
<Suspense fallback={<CSpinner color="primary" />}>
<Row className="justify-content-center">
<Col xs="12" md="12">
<Col xs="12" md="11" lg="10">
<Routes>
{routes.map((route, idx) => {
return (
Expand Down
17 changes: 17 additions & 0 deletions webapp/client/src/scss/_variables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,20 @@
// If you want to customize your project please add your variables below.

$enable-deprecation-messages: false !default;

// set max to big #
// scss-docs-start container-max-widths
$container-max-widths: (
sm: 5400px,
md: 7200px,
lg: 9600px,
xl: 11400px,
xxl: 13200px
) !default;

// .body {
// padding-top: 0px;
// padding-right: 100px;
// padding-bottom: 100px;
// padding-left: 100px;
// }

0 comments on commit eca1192

Please sign in to comment.