@npm_leadtech/legal-lib-components 7.12.7 → 7.12.9
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.
- package/dist/src/components/organisms/MenuItems/MenuItems.styled.js +1 -2
- package/dist/src/components/organisms/MenuItems/MenuItems.styled.ts +1 -2
- package/dist/src/components/sections/Header/Header.styled.js +16 -3
- package/dist/src/components/sections/Header/Header.styled.ts +16 -3
- package/package.json +1 -1
|
@@ -5,7 +5,6 @@ export const MenuItemsStyled = styled.div `
|
|
|
5
5
|
flex-direction: column;
|
|
6
6
|
justify-content: flex-start;
|
|
7
7
|
align-items: flex-start;
|
|
8
|
-
margin-top: 1rem;
|
|
9
8
|
|
|
10
9
|
&__wrapper {
|
|
11
10
|
width: 100%;
|
|
@@ -259,7 +258,7 @@ export const MenuItemsStyled = styled.div `
|
|
|
259
258
|
|
|
260
259
|
li.menu-items-li {
|
|
261
260
|
width: 100%;
|
|
262
|
-
margin:
|
|
261
|
+
margin-right: 2.5rem;
|
|
263
262
|
border-radius: var(--s-border-radius);
|
|
264
263
|
transition: all 0.3s ease;
|
|
265
264
|
padding: 0.25rem;
|
|
@@ -6,7 +6,6 @@ export const MenuItemsStyled = styled.div`
|
|
|
6
6
|
flex-direction: column;
|
|
7
7
|
justify-content: flex-start;
|
|
8
8
|
align-items: flex-start;
|
|
9
|
-
margin-top: 1rem;
|
|
10
9
|
|
|
11
10
|
&__wrapper {
|
|
12
11
|
width: 100%;
|
|
@@ -260,7 +259,7 @@ export const MenuItemsStyled = styled.div`
|
|
|
260
259
|
|
|
261
260
|
li.menu-items-li {
|
|
262
261
|
width: 100%;
|
|
263
|
-
margin:
|
|
262
|
+
margin-right: 2.5rem;
|
|
264
263
|
border-radius: var(--s-border-radius);
|
|
265
264
|
transition: all 0.3s ease;
|
|
266
265
|
padding: 0.25rem;
|
|
@@ -23,15 +23,28 @@ export const HeaderStyled = styled.header `
|
|
|
23
23
|
}
|
|
24
24
|
}
|
|
25
25
|
|
|
26
|
-
.
|
|
26
|
+
.header__inner {
|
|
27
|
+
align-items: center;
|
|
28
|
+
justify-content: space-between;
|
|
29
|
+
max-width: 1200px;
|
|
30
|
+
padding: 1rem 1.5rem;
|
|
31
|
+
|
|
32
|
+
@media (min-width: ${size.sm}) {
|
|
33
|
+
padding: 1rem;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
&.scrollDown {
|
|
27
38
|
background-color: var(--others-white) !important;
|
|
28
39
|
box-shadow: var(--box-shadow-small);
|
|
29
40
|
}
|
|
30
41
|
|
|
31
42
|
.top-bar-wrapper {
|
|
32
43
|
.top-bar {
|
|
33
|
-
|
|
34
|
-
|
|
44
|
+
@media (max-width: ${size.sm}) {
|
|
45
|
+
font-size: 0.78rem;
|
|
46
|
+
letter-spacing: -0.5px;
|
|
47
|
+
}
|
|
35
48
|
}
|
|
36
49
|
|
|
37
50
|
.top-bar-content {
|
|
@@ -24,15 +24,28 @@ export const HeaderStyled = styled.header`
|
|
|
24
24
|
}
|
|
25
25
|
}
|
|
26
26
|
|
|
27
|
-
.
|
|
27
|
+
.header__inner {
|
|
28
|
+
align-items: center;
|
|
29
|
+
justify-content: space-between;
|
|
30
|
+
max-width: 1200px;
|
|
31
|
+
padding: 1rem 1.5rem;
|
|
32
|
+
|
|
33
|
+
@media (min-width: ${size.sm}) {
|
|
34
|
+
padding: 1rem;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
&.scrollDown {
|
|
28
39
|
background-color: var(--others-white) !important;
|
|
29
40
|
box-shadow: var(--box-shadow-small);
|
|
30
41
|
}
|
|
31
42
|
|
|
32
43
|
.top-bar-wrapper {
|
|
33
44
|
.top-bar {
|
|
34
|
-
|
|
35
|
-
|
|
45
|
+
@media (max-width: ${size.sm}) {
|
|
46
|
+
font-size: 0.78rem;
|
|
47
|
+
letter-spacing: -0.5px;
|
|
48
|
+
}
|
|
36
49
|
}
|
|
37
50
|
|
|
38
51
|
.top-bar-content {
|