-
Notifications
You must be signed in to change notification settings - Fork 127
/
Modal.css
54 lines (48 loc) · 925 Bytes
/
Modal.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
44
45
46
47
48
49
50
51
52
53
54
/* components/Modal.module.css */
.modalOverlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
justify-content: center;
align-items: center;
}
.modalContent {
background: white;
padding: 20px;
border-radius: 8px;
width: 400px;
text-align: center;
}
.inputField {
width: 100%;
padding: 10px;
margin-top: 10px;
border: 1px solid #ccc;
border-radius: 4px;
}
.btnPrimary {
background-color: #007bff;
color: white;
border: none;
padding: 10px 20px;
margin: 10px;
border-radius: 4px;
cursor: pointer;
}
.btnSecondary {
background-color: #6c757d;
color: white;
border: none;
padding: 10px 20px;
margin: 10px;
border-radius: 4px;
cursor: pointer;
}
.errorMessage {
color: red;
margin-top: 10px;
}