-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCountryFlag.scss
58 lines (48 loc) · 1.18 KB
/
CountryFlag.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
@import "../../scss/common";
$block: "pb-country-flag";
.#{$block}__content{
background-color: $c-white;
border: $border-width $border-style $c-border;
border-radius: $border-radius-l;
padding: $space-s;
position: absolute;
width: $size-avatar-xxl;
.#{$block}__content-image{
float: left;
height: $height-logo-s;
margin-right: $space-m;
width: $height-logo-s;
}
.pb-caret{
float: right;
padding-right: $space-l;
}
}
.#{$block}__label {
font-family: $font-family;
font-weight: $font-weight-bold;
}
.#{$block}__countries{
background-color: $c-white;
border: $border-width $border-style $c-border;
border-radius: $border-radius-l;
margin: 0;
position: relative;
top: $space-m;
width: $size-avatar-xxl;
.#{$block}__countries-list{
cursor: pointer;
list-style-type: none;
margin: 0;
padding: $space-s;
&:hover{
background-color: $c-link-lighter;
}
}
.#{$block}__countries-image{
float: left;
height: $height-logo-s;
margin-right: $space-m;
width: $height-logo-s;
}
}