-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathApp.css
More file actions
34 lines (31 loc) · 797 Bytes
/
App.css
File metadata and controls
34 lines (31 loc) · 797 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
html, body {
height: 100%;
margin: 0;
padding: 0;
overflow: hidden; /* Keep overflow hidden at root level */
}
.App {
text-align: center;
background: linear-gradient(45deg, #f06, #4a90e2); /* Gradient background */
height: 100vh;
width: 100vw; /* Ensure the full width of the viewport is used */
display: flex;
flex-direction: column; /* Stack items vertically */
justify-content: flex-start; /* Start content from the top */
align-items: center;
overflow-y: auto; /* Allow vertical scrolling */
margin: 0;
}
.App-header {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
width: 100%;
padding: 20px 0; /* Add padding to give space to elements */
}
.App-logo {
width: 1000px;
height: auto;
margin-bottom: 20px;
}