Skip to content

Commit 6bdefc0

Browse files
committed
Fix UI padding and alignment in docs (Issue #235)
Signed-off-by: anish-devgit <[email protected]>
1 parent 7011c10 commit 6bdefc0

File tree

1 file changed

+6
-11
lines changed

1 file changed

+6
-11
lines changed
Lines changed: 6 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,21 @@
11
/* this is the container for the pages */
22
.wy-nav-content {
33
max-width: 100%;
4-
padding: 0px 40px 0px 0px;
5-
margin-top: 0px;
4+
padding: 2em 40px; /* Adjusted padding for better spacing */
65
}
76

87
.wy-nav-content-wrap {
9-
border-right: solid 1px;
8+
border-right: none; /* Removed border as it is usually not needed */
109
}
1110

1211
div.rst-content {
13-
max-width: 1300px;
14-
border: 0;
15-
padding: 10px 80px 10px 80px;
16-
margin-left: 50px;
12+
max-width: 1000px; /* Reduced max-width for better readability */
13+
margin: 0 auto; /* Center the content */
14+
padding: 20px; /* Simplified padding */
1715
}
1816

1917
@media (max-width: 768px) {
2018
div.rst-content {
21-
max-width: 1300px;
22-
border: 0;
23-
padding: 0px 10px 10px 10px;
24-
margin-left: 0px;
19+
padding: 20px;
2520
}
2621
}

0 commit comments

Comments
 (0)