-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPhonePoster.module.scss
50 lines (42 loc) · 1011 Bytes
/
PhonePoster.module.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
@use 'common' as common;
.phonePoster {
background-color: var(--a-gray-50);
border-radius: var(--a-border-radius-small);
padding: common.$sectionPaddingMobile;
margin-top: 1rem;
@media #{common.$mq-screen-tablet} {
padding: common.$sectionPaddingTablet;
}
@media #{common.$mq-screen-desktop} {
padding: common.$sectionPaddingDesktop;
}
}
.heading {
font-weight: normal;
margin-bottom: 0.5rem;
}
.phoneNumberWrapper {
margin-bottom: 1rem;
}
.phoneNumber {
align-items: center;
color: rgb(0, 0, 0);
display: flex;
font-size: 1.5rem;
font-weight: var(--a-font-weight-bold);
padding-right: 1rem;
text-decoration: none;
&:focus {
background-color: transparent;
color: rgb(0, 0, 0);
}
}
.telephoneIcon {
background-color: white;
border-radius: 2rem;
height: 2.5rem;
width: 2.5rem;
margin-right: 0.25rem;
padding: 0.6rem;
transform: translateY(-1px) translateX(-6px);
}