@phillips/seldon 1.73.3 → 1.74.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
width: 100%;
|
|
49
49
|
.#{$px}-nav__list__section {
|
|
50
50
|
opacity: 0;
|
|
51
|
-
transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
|
|
51
|
+
transition: opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1) 0.2s;
|
|
52
52
|
}
|
|
53
53
|
}
|
|
54
54
|
|
|
@@ -57,7 +57,9 @@
|
|
|
57
57
|
max-height: 700px;
|
|
58
58
|
opacity: 1;
|
|
59
59
|
pointer-events: all;
|
|
60
|
-
transition:
|
|
60
|
+
transition:
|
|
61
|
+
max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
|
|
62
|
+
opacity 0.3s cubic-bezier(0.33, 1, 0.68, 1);
|
|
61
63
|
|
|
62
64
|
.#{$px}-nav__list__section {
|
|
63
65
|
opacity: 1;
|
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
@use '../../../allPartials' as *;
|
|
2
2
|
|
|
3
|
-
$opacity-transition: opacity 0.2s cubic-bezier(0.65, 0, 0.35, 1);
|
|
4
3
|
$top-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
5
4
|
|
|
6
5
|
.#{$px}-nav__list {
|
|
@@ -9,7 +8,6 @@ $top-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
9
8
|
justify-content: left;
|
|
10
9
|
opacity: 1;
|
|
11
10
|
padding: $spacing-md 0;
|
|
12
|
-
transition: $opacity-transition;
|
|
13
11
|
|
|
14
12
|
&--offscreen {
|
|
15
13
|
opacity: 0;
|
|
@@ -29,11 +27,13 @@ $top-transition: top 0.3s cubic-bezier(0.4, 0, 0.2, 1);
|
|
|
29
27
|
top: 0;
|
|
30
28
|
transition:
|
|
31
29
|
$top-transition,
|
|
32
|
-
|
|
30
|
+
opacity 0.5s cubic-bezier(0.65, 0, 0.35, 1);
|
|
33
31
|
|
|
34
32
|
&--offscreen {
|
|
35
33
|
top: -100%;
|
|
36
|
-
transition:
|
|
34
|
+
transition:
|
|
35
|
+
$top-transition,
|
|
36
|
+
opacity 0.2s cubic-bezier(0.65, 0, 0.35, 1);
|
|
37
37
|
z-index: 5;
|
|
38
38
|
}
|
|
39
39
|
|
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
@use '../../allPartials' as *;
|
|
2
2
|
|
|
3
|
+
$social_icon_height: 1.75rem;
|
|
4
|
+
|
|
3
5
|
.#{$px}-social {
|
|
4
6
|
align-items: center;
|
|
5
7
|
display: inline-flex;
|
|
@@ -33,6 +35,10 @@
|
|
|
33
35
|
text-align: left;
|
|
34
36
|
text-decoration: underline;
|
|
35
37
|
|
|
38
|
+
&.#{$px}-social__button {
|
|
39
|
+
font-variation-settings: 'wght' 600;
|
|
40
|
+
}
|
|
41
|
+
|
|
36
42
|
&:hover {
|
|
37
43
|
background-color: unset;
|
|
38
44
|
color: unset;
|
|
@@ -44,31 +50,39 @@
|
|
|
44
50
|
}
|
|
45
51
|
}
|
|
46
52
|
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
width: 100%;
|
|
57
|
-
|
|
58
|
-
@include media($size-md) {
|
|
59
|
-
gap: 0 1rem;
|
|
60
|
-
justify-content: flex-start;
|
|
61
|
-
margin: $spacing-md 0 $spacing-md;
|
|
53
|
+
&.#{$px}-social {
|
|
54
|
+
ul {
|
|
55
|
+
align-items: center;
|
|
56
|
+
border-top: 1px solid #eae8e4;
|
|
57
|
+
display: flex;
|
|
58
|
+
gap: 0 1.75rem;
|
|
59
|
+
justify-content: center;
|
|
60
|
+
list-style: none;
|
|
61
|
+
margin: $spacing-md 0 0;
|
|
62
62
|
padding: $spacing-sm 0 0;
|
|
63
63
|
width: 100%;
|
|
64
|
-
}
|
|
65
64
|
|
|
66
|
-
|
|
67
|
-
|
|
65
|
+
@include media($size-md) {
|
|
66
|
+
gap: 0 2rem;
|
|
67
|
+
justify-content: flex-start;
|
|
68
|
+
margin: $spacing-md 0 $spacing-md;
|
|
69
|
+
padding: $spacing-sm 0 0;
|
|
70
|
+
width: 100%;
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
li {
|
|
74
|
+
cursor: pointer;
|
|
75
|
+
height: $social_icon_height;
|
|
76
|
+
|
|
77
|
+
svg {
|
|
78
|
+
height: $social_icon_height;
|
|
79
|
+
width: $social_icon_height;
|
|
80
|
+
}
|
|
81
|
+
}
|
|
68
82
|
}
|
|
69
|
-
}
|
|
70
83
|
|
|
71
|
-
|
|
72
|
-
|
|
84
|
+
a {
|
|
85
|
+
display: inline-block;
|
|
86
|
+
}
|
|
73
87
|
}
|
|
74
88
|
}
|