There was an error while loading. Please reload this page.
1 parent 10b73fe commit d046d5aCopy full SHA for d046d5a
1 file changed
Wireframe/style.css
@@ -15,19 +15,21 @@ body {
15
font-family: Arial, sans-serif;
16
display: flex;
17
flex-direction: column;
18
- min-height: 100vh; /* ← ADD THIS: ensures body is at least full viewport height */
+ min-height: 100vh;
19
}
20
21
/* Make main content flexible to push footer down */
22
main {
23
flex: 1;
24
padding: 20px;
25
+ overflow-y: auto;
26
27
28
/* Center the page title */
29
header {
30
text-align: center;
31
padding: 20px 20px 0;
32
+ flex-shrink: 0;
33
34
35
/* Layout for the articles */
@@ -62,4 +64,5 @@ footer {
62
64
padding: 10px 20px;
63
65
border-top: 1px solid #ccc;
66
background-color: #f9f9f9;
67
68
0 commit comments