Skip to content

Commit

Permalink
Update main.css
Browse files Browse the repository at this point in the history
  • Loading branch information
sri-dsa authored Feb 11, 2025
1 parent 0dbc829 commit 2668576
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions assets/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -4015,8 +4015,8 @@ h1{
justify-content: center;
align-items: flex-start;
padding: 3% 5%;
width: 100%; /* ✅ Now fully expands */
max-width: 100%; /* ✅ Ensures it stretches properly */
width: 100%;
max-width: 100%; /* This can stay, ensuring no max-width constraints */
background-color: #1e252d;
color: #ffffff;
margin: 0 auto;
Expand All @@ -4028,9 +4028,9 @@ h1{
justify-content: space-between;
align-items: flex-start;
flex-wrap: wrap;
width: 100%; /* ✅ Optimized width for better fit */
max-width: 1400px; /* ✅ Prevents footer from being too wide on very large screens */
margin: 0 auto;
width: 100%; /* Ensure it stretches across the entire width */
max-width: none; /* Remove max-width constraint */
margin: 0; /* Remove auto margin that could cause spacing issues */
gap: 20px;
}

Expand Down Expand Up @@ -4093,7 +4093,7 @@ h1{
flex-direction: column;
align-items: center;
text-align: center;
width: 95%; /* ✅ Allows slight margin on smaller screens */
width: 95%; /* Slight margin for small screens */
}

#footer .split.contact section {
Expand Down

0 comments on commit 2668576

Please sign in to comment.