@phillips/seldon 1.53.0 → 1.53.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.
|
@@ -73,6 +73,7 @@
|
|
|
73
73
|
|
|
74
74
|
&__logo {
|
|
75
75
|
align-self: center;
|
|
76
|
+
padding-top: 6px; // small adjustment to center the logo
|
|
76
77
|
|
|
77
78
|
svg {
|
|
78
79
|
height: 24px;
|
|
@@ -80,6 +81,8 @@
|
|
|
80
81
|
}
|
|
81
82
|
|
|
82
83
|
@include isHeaderDesktop {
|
|
84
|
+
padding-top: 0;
|
|
85
|
+
|
|
83
86
|
svg {
|
|
84
87
|
height: 28px;
|
|
85
88
|
width: 100%;
|
|
@@ -6,8 +6,9 @@
|
|
|
6
6
|
display: flex;
|
|
7
7
|
gap: 0 $spacing-xsm;
|
|
8
8
|
justify-content: flex-end;
|
|
9
|
-
min-height:
|
|
9
|
+
min-height: 49px; // stop bounce after the user is logged in
|
|
10
10
|
min-width: 92px; // needed to handle the loading states and language swapping
|
|
11
|
+
padding-top: $padding-xsm;
|
|
11
12
|
|
|
12
13
|
@include media($size-xl) {
|
|
13
14
|
min-width: 104px; // stop bounce after the user is logged in
|
|
@@ -26,6 +27,9 @@
|
|
|
26
27
|
cursor: pointer;
|
|
27
28
|
display: flex;
|
|
28
29
|
gap: 0 $spacing-xsm;
|
|
30
|
+
justify-content: center;
|
|
31
|
+
min-width: 44px;
|
|
32
|
+
padding: 0;
|
|
29
33
|
padding-bottom: $padding-xsm;
|
|
30
34
|
|
|
31
35
|
&:hover {
|
|
@@ -37,13 +41,14 @@
|
|
|
37
41
|
|
|
38
42
|
@include isHeaderMobile {
|
|
39
43
|
display: none;
|
|
44
|
+
min-height: 2rem;
|
|
40
45
|
}
|
|
41
46
|
}
|
|
42
47
|
}
|
|
43
48
|
|
|
44
49
|
&__account-icon {
|
|
45
|
-
height:
|
|
46
|
-
width:
|
|
50
|
+
height: 2rem;
|
|
51
|
+
width: 2rem;
|
|
47
52
|
|
|
48
53
|
a {
|
|
49
54
|
align-items: center;
|
|
@@ -53,7 +58,7 @@
|
|
|
53
58
|
width: $mobile-minimum-clickable-area;
|
|
54
59
|
}
|
|
55
60
|
|
|
56
|
-
@
|
|
61
|
+
@include isHeaderDesktop {
|
|
57
62
|
height: 1.5rem;
|
|
58
63
|
width: 1.5rem;
|
|
59
64
|
}
|