-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaddProductStyles.css
More file actions
45 lines (38 loc) · 848 Bytes
/
addProductStyles.css
File metadata and controls
45 lines (38 loc) · 848 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
35
36
37
38
39
40
41
42
43
44
45
/* AddProductStyles.css */
.add-product-container {
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
background-color: #001f3f;
}
.add-product-card {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
width: 300px;
text-align: center;
}
.add-product-card h2 {
margin-bottom: 20px;
}
.add-product-form {
display: flex;
flex-direction: column;
}
.add-product-form label {
margin-bottom: 8px;
}
.add-product-form input {
padding: 8px;
margin-bottom: 16px;
}
.add-product-form button {
background-color: #282c34;
color: #fff;
padding: 10px;
border: none;
border-radius: 4px;
cursor: pointer;
}