@npm_leadtech/legal-lib-components 7.7.0 → 7.7.2
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 +5 -1
- package/dist/src/components/atoms/PopularDocsItem/PopularDocsItem.styled.ts +5 -1
- 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 +1 -0
- package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts +1 -0
- package/package.json +1 -1
|
@@ -5,7 +5,7 @@ export const PopularDocsItemStyled = styled.a `
|
|
|
5
5
|
flex-direction: row;
|
|
6
6
|
align-items: center;
|
|
7
7
|
padding: 1.5rem 1rem 1.5rem 1.5rem;
|
|
8
|
-
gap:
|
|
8
|
+
gap: 1rem;
|
|
9
9
|
height: 6rem;
|
|
10
10
|
background: var(--others-white);
|
|
11
11
|
box-shadow: var(--box-shadow-container);
|
|
@@ -39,6 +39,10 @@ export const PopularDocsItemStyled = styled.a `
|
|
|
39
39
|
text-align: left;
|
|
40
40
|
width: 100%;
|
|
41
41
|
|
|
42
|
+
strong {
|
|
43
|
+
font-size: 0.9rem;
|
|
44
|
+
}
|
|
45
|
+
|
|
42
46
|
.description {
|
|
43
47
|
color: var(--neutral-neutral-2);
|
|
44
48
|
font-size: 12px;
|
|
@@ -6,7 +6,7 @@ export const PopularDocsItemStyled = styled.a`
|
|
|
6
6
|
flex-direction: row;
|
|
7
7
|
align-items: center;
|
|
8
8
|
padding: 1.5rem 1rem 1.5rem 1.5rem;
|
|
9
|
-
gap:
|
|
9
|
+
gap: 1rem;
|
|
10
10
|
height: 6rem;
|
|
11
11
|
background: var(--others-white);
|
|
12
12
|
box-shadow: var(--box-shadow-container);
|
|
@@ -40,6 +40,10 @@ export const PopularDocsItemStyled = styled.a`
|
|
|
40
40
|
text-align: left;
|
|
41
41
|
width: 100%;
|
|
42
42
|
|
|
43
|
+
strong {
|
|
44
|
+
font-size: 0.9rem;
|
|
45
|
+
}
|
|
46
|
+
|
|
43
47
|
.description {
|
|
44
48
|
color: var(--neutral-neutral-2);
|
|
45
49
|
font-size: 12px;
|
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
|
}
|