aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/sass
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/sass')
-rw-r--r--client/src/sass/application.scss7
1 files changed, 6 insertions, 1 deletions
diff --git a/client/src/sass/application.scss b/client/src/sass/application.scss
index 89957704b..413f8c49d 100644
--- a/client/src/sass/application.scss
+++ b/client/src/sass/application.scss
@@ -106,9 +106,13 @@ label {
106 color: black; 106 color: black;
107} 107}
108 108
109.row {
110 margin: 0;
111}
112
109.main-col { 113.main-col {
110 margin-left: $menu-width; 114 margin-left: $menu-width;
111 width: auto; 115 width: calc(100% - #{$menu-width});
112 116
113 .margin-content { 117 .margin-content {
114 margin-left: $not-expanded-horizontal-margins; 118 margin-left: $not-expanded-horizontal-margins;
@@ -130,6 +134,7 @@ label {
130 // Override some properties if the main content is expanded (no menu on the left) 134 // Override some properties if the main content is expanded (no menu on the left)
131 &.expanded { 135 &.expanded {
132 margin-left: 0; 136 margin-left: 0;
137 width: 100%;
133 138
134 .margin-content { 139 .margin-content {
135 margin-left: $expanded-horizontal-margins; 140 margin-left: $expanded-horizontal-margins;