@npm_leadtech/legal-lib-components 7.10.2 → 7.11.3
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/atoms/PopularDocsItem/PopularDocsItem.styled.js +9 -0
- package/dist/src/components/atoms/PopularDocsItem/PopularDocsItem.styled.ts +9 -0
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js +2 -0
- package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.ts +2 -0
- package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.js +1 -1
- package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.ts +1 -1
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.js +3 -0
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts +3 -0
- package/package.json +1 -1
|
@@ -25,6 +25,10 @@ export const PopularDocsItemStyled = styled.a `
|
|
|
25
25
|
margin-left: 0.5rem;
|
|
26
26
|
}
|
|
27
27
|
|
|
28
|
+
@media ${device.mobile} {
|
|
29
|
+
gap: 1rem;
|
|
30
|
+
}
|
|
31
|
+
|
|
28
32
|
.category-icon svg {
|
|
29
33
|
fill: var(--primary-main-dark-1);
|
|
30
34
|
}
|
|
@@ -45,6 +49,11 @@ export const PopularDocsItemStyled = styled.a `
|
|
|
45
49
|
line-height: 1.33;
|
|
46
50
|
margin-top: 0.3rem;
|
|
47
51
|
}
|
|
52
|
+
media ${device.mobile} {
|
|
53
|
+
strong {
|
|
54
|
+
font-size: 0.9rem;
|
|
55
|
+
}
|
|
56
|
+
}
|
|
48
57
|
}
|
|
49
58
|
|
|
50
59
|
.icon-left svg {
|
|
@@ -26,6 +26,10 @@ export const PopularDocsItemStyled = styled.a`
|
|
|
26
26
|
margin-left: 0.5rem;
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
@media ${device.mobile} {
|
|
30
|
+
gap: 1rem;
|
|
31
|
+
}
|
|
32
|
+
|
|
29
33
|
.category-icon svg {
|
|
30
34
|
fill: var(--primary-main-dark-1);
|
|
31
35
|
}
|
|
@@ -46,6 +50,11 @@ export const PopularDocsItemStyled = styled.a`
|
|
|
46
50
|
line-height: 1.33;
|
|
47
51
|
margin-top: 0.3rem;
|
|
48
52
|
}
|
|
53
|
+
media ${device.mobile} {
|
|
54
|
+
strong {
|
|
55
|
+
font-size: 0.9rem;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
49
58
|
}
|
|
50
59
|
|
|
51
60
|
.icon-left svg {
|
package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js
CHANGED
|
@@ -17,6 +17,8 @@ export const HowGetYourFormsSectionStyled = styled.section `
|
|
|
17
17
|
font-family: var(--font-serif);
|
|
18
18
|
text-align: center;
|
|
19
19
|
padding-top: 4rem;
|
|
20
|
+
padding-right: 1.5rem;
|
|
21
|
+
padding-left: 1.5rem;
|
|
20
22
|
@media only screen and (max-width: ${size.md}) {
|
|
21
23
|
padding-top: 2.5rem;
|
|
22
24
|
}
|
package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.ts
CHANGED
|
@@ -18,6 +18,8 @@ export const HowGetYourFormsSectionStyled = styled.section`
|
|
|
18
18
|
font-family: var(--font-serif);
|
|
19
19
|
text-align: center;
|
|
20
20
|
padding-top: 4rem;
|
|
21
|
+
padding-right: 1.5rem;
|
|
22
|
+
padding-left: 1.5rem;
|
|
21
23
|
@media only screen and (max-width: ${size.md}) {
|
|
22
24
|
padding-top: 2.5rem;
|
|
23
25
|
}
|
|
@@ -11,11 +11,14 @@ export const WhyLawDistrictSectionStyled = styled.section `
|
|
|
11
11
|
|
|
12
12
|
@media ${device['landscape-tablets']} {
|
|
13
13
|
padding-bottom: 0rem;
|
|
14
|
+
padding-left: 1.5rem;
|
|
15
|
+
padding-right: 1.5rem;
|
|
14
16
|
display: block;
|
|
15
17
|
}
|
|
16
18
|
|
|
17
19
|
.whyLawDistrictSection {
|
|
18
20
|
&__title {
|
|
21
|
+
padding: 0 1.5rem;
|
|
19
22
|
@media ${device.laptop} {
|
|
20
23
|
padding: 0;
|
|
21
24
|
}
|
|
@@ -12,11 +12,14 @@ export const WhyLawDistrictSectionStyled = styled.section`
|
|
|
12
12
|
|
|
13
13
|
@media ${device['landscape-tablets']} {
|
|
14
14
|
padding-bottom: 0rem;
|
|
15
|
+
padding-left: 1.5rem;
|
|
16
|
+
padding-right: 1.5rem;
|
|
15
17
|
display: block;
|
|
16
18
|
}
|
|
17
19
|
|
|
18
20
|
.whyLawDistrictSection {
|
|
19
21
|
&__title {
|
|
22
|
+
padding: 0 1.5rem;
|
|
20
23
|
@media ${device.laptop} {
|
|
21
24
|
padding: 0;
|
|
22
25
|
}
|