Fix Custom CSS - Width of text rendered

This commit is contained in:
Roshan Kumar 2024-01-09 09:06:38 +05:30
parent 91df000ca8
commit 1bfd50cad9
2 changed files with 16 additions and 1 deletions

View File

@ -0,0 +1,11 @@
p {
text-align: left !important;
}
body {
max-width: none; /* Removes the maximum width constraint */
}
article {
max-width: 100%; /* Use the full width of the parent container */
margin: 0 auto; /* Center the content if needed */
}

View File

@ -1,3 +1,7 @@
module: module:
hugoVersion: hugoVersion:
min: "0.84.0" min: "0.84.0"
params:
custom_css:
- custom.css
text_color: black