-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCSS
43 lines (39 loc) · 782 Bytes
/
CSS
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
35
36
37
38
39
40
41
42
43
import React from 'react';
import ReactDOM from 'react-dom';
import App from './App';
import './index.css'; .App {
text-align: center;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #282c34;
color: white;
}
.App-header {
padding: 20px;
}
.buttons-container {
margin-top: 20px;
}
.pi-login-button, .pi-payment-button {
background-color: #61dafb;
border: none;
padding: 10px 20px;
margin: 10px;
border-radius: 5px;
cursor: pointer;
font-size: 16px;
color: #282c34;
}
.pi-login-button:hover, .pi-payment-button:hover {
background-color: #21a1f1;
}
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
);
npm start