Skip to content

Commit 10b73fe

Browse files
Update CSS for layout and styling adjustments
Added margin and padding reset to html and body. Ensured body has a minimum height of 100vh for proper layout.
1 parent 9c44876 commit 10b73fe

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

Wireframe/style.css

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,15 @@
77
/* General page styling with flexbox for sticky footer */
88
html, body {
99
height: 100%;
10+
margin: 0;
11+
padding: 0;
1012
}
1113

1214
body {
1315
font-family: Arial, sans-serif;
14-
margin: 0;
15-
padding: 0;
1616
display: flex;
1717
flex-direction: column;
18+
min-height: 100vh; /* ← ADD THIS: ensures body is at least full viewport height */
1819
}
1920

2021
/* Make main content flexible to push footer down */

0 commit comments

Comments
 (0)