-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
addCharity.style.js
59 lines (46 loc) · 998 Bytes
/
addCharity.style.js
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
55
56
57
58
59
import styled from "styled-components";
export const Wrapper = styled.div`
text-align: center;
p {
font-size: 1.5rem;
margin-bottom: 1.2rem;
}
button {
background-color: var(--color-main);
border: none;
border-radius: 5px;
font-size: 1.2rem;
font-weight: 500;
color: black;
cursor: pointer;
padding: 0.5rem 1.5rem;
margin: 0.5rem;
}
input[type="text"],
select {
width: 15rem;
padding: 0.1rem 0.2rem;
margin: 0.2rem 0.1rem;
display: inline-block;
border: 1px solid #ccc;
border-radius: 4px;
box-sizing: border-box;
}
`;
export const FormWrap = styled.div`
display: flex;
flex-direction: row;
justify-content: space-around;
border: 2px solid var(--color-main);
border-radius: 5px;
padding: 1rem;
`;
export const Submit = styled.div`
background-color: #1da1f2;
border: none;
border-radius: 5px;
font-size: 1.2rem;
color: white;
cursor: pointer;
padding: 0.25rem 0.75rem;
`;