Newer
Older
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
.Contact {
max-width: 30rem;
margin: 1.5rem auto;
}
.Contact-group {
list-style-type: none;
margin: 0;
padding: 0;
}
.Contact-hidden {
display: none;
}
.Contact-item {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 0.5rem 0;
}
.Contact-label {
flex-basis: 5rem;
}
.Contact-input {
flex-grow: 1;
flex-basis: 15rem;
}
.Contact-input--textbox {
resize: vertical;
height: 5rem;
}
.Contact-button {
margin-left: auto;
}