-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathSharingForm.styles.scss
82 lines (69 loc) · 1.35 KB
/
SharingForm.styles.scss
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
@import 'src/styles/variables';
.sharing-modal {
.header {
justify-content: space-between;
margin-bottom: 1.2rem;
.title {
font-size: 2.1rem;
line-height: 2.7rem;
font-weight: 600;
}
.btn-close i {
color: $secondary-text;
font-size: 1.8rem;
}
}
.description {
color: $secondary-text;
margin-bottom: 2rem;
}
.link {
label {
font-size: 1.6rem;
font-weight: 500;
}
}
.input-group {
display: flex;
margin-top: 0.8rem;
input,
button {
border: 1px solid $secondary-stroke;
border-radius: 4px;
}
> input:not(:last-child) {
border-top-right-radius: 0;
border-bottom-right-radius: 0;
flex: 1 1 auto;
padding: 1.2rem 2rem;
}
.input-group-append {
margin-left: -1px;
}
button {
padding: 1.2rem;
background-color: $background;
border-top-left-radius: 0;
border-bottom-left-radius: 0;
}
}
.footer {
display: flex;
justify-content: flex-end;
margin-top: 3.2rem;
button {
padding-top: 1.2rem;
padding-bottom: 1.2rem;
&:last-of-type {
width: 14.8rem;
border: 0;
background-color: $main-purple;
color: #fff;
}
&:first-of-type {
margin-right: 1.2rem;
width: 12rem;
}
}
}
}