File tree Expand file tree Collapse file tree 1 file changed +14
-6
lines changed
Expand file tree Collapse file tree 1 file changed +14
-6
lines changed Original file line number Diff line number Diff line change 108108 /* Add left margin to the main wrapper to prevent overlap with sidebar */
109109 .wrapper {
110110 width : auto;
111- margin-left : 310 px ; /* Reduced from 330px */
111+ margin-left : 350 px ; /* Increased to give proper clearance */
112112 margin-right : 50px ;
113113 padding-right : 20px ;
114- max-width : none; /* Remove the restrictive max-width */
114+ max-width : none;
115115 }
116116
117- /* Ensure the header section also respects the sidebar */
117+ /* Ensure the header section stays fixed */
118118 header {
119119 position : fixed;
120120 left : 0 ;
123123 }
124124}
125125
126- /* For smaller desktop screens, reduce the left margin */
127- @media screen and (min-width : 769px ) and (max-width : 960 px ) {
126+ /* For medium-width screens (like your current window), still need good spacing */
127+ @media screen and (min-width : 769px ) and (max-width : 1100 px ) {
128128 .wrapper {
129- margin-left : 290 px ;
129+ margin-left : 340 px ; /* Still plenty of space */
130130 margin-right : 30px ;
131131 }
132132}
133133
134+ /* For very wide screens, can add more right margin for better reading width */
135+ @media screen and (min-width : 1400px ) {
136+ .wrapper {
137+ margin-left : 350px ;
138+ margin-right : 100px ;
139+ }
140+ }
141+
134142/* Ensure mobile layout is unaffected */
135143@media screen and (max-width : 768px ) {
136144 .wrapper {
You can’t perform that action at this time.
0 commit comments