@npm_leadtech/legal-lib-components 5.3.21 → 5.4.0

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.
Files changed (191) hide show
  1. package/dist/css/styles.css +1043 -2
  2. package/dist/src/components/atoms/ContactCard/ContactCard.d.ts +4 -0
  3. package/dist/src/components/atoms/ContactCard/ContactCard.js +6 -0
  4. package/dist/src/components/{sections/BlogSection/BlogSection.styled.d.ts → atoms/ContactCard/ContactCard.styled.d.ts} +1 -1
  5. package/dist/src/components/atoms/ContactCard/ContactCard.styled.js +38 -0
  6. package/dist/src/components/atoms/ContactCard/ContactCard.styled.ts +39 -0
  7. package/dist/src/components/atoms/ContactCard/ContactCard.tsx +38 -0
  8. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.d.ts +9 -0
  9. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.js +1 -0
  10. package/dist/src/components/atoms/ContactCard/ContactCardProps.types.ts +9 -0
  11. package/dist/src/components/atoms/ContactCard/index.d.ts +2 -0
  12. package/dist/src/components/atoms/ContactCard/index.js +1 -0
  13. package/dist/src/components/atoms/ContactCard/index.ts +2 -0
  14. package/dist/src/components/atoms/RichTextStrapi/RichTextStrapi.styled.js +5 -3
  15. package/dist/src/components/atoms/RichTextStrapi/RichTextStrapi.styled.ts +5 -3
  16. package/dist/src/components/atoms/index.d.ts +1 -0
  17. package/dist/src/components/atoms/index.js +1 -0
  18. package/dist/src/components/atoms/index.ts +1 -0
  19. package/dist/src/components/molecules/ContactCardList/ContactCardList.d.ts +4 -0
  20. package/dist/src/components/molecules/ContactCardList/ContactCardList.js +7 -0
  21. package/dist/src/components/molecules/ContactCardList/ContactCardList.styled.d.ts +1 -0
  22. package/dist/src/components/{sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.js → molecules/ContactCardList/ContactCardList.styled.js} +4 -5
  23. package/dist/src/components/{sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.ts → molecules/ContactCardList/ContactCardList.styled.ts} +4 -5
  24. package/dist/src/components/molecules/ContactCardList/ContactCardList.tsx +17 -0
  25. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.d.ts +4 -0
  26. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.js +1 -0
  27. package/dist/src/components/molecules/ContactCardList/ContactCardListProps.types.ts +5 -0
  28. package/dist/src/components/molecules/ContactCardList/index.d.ts +2 -0
  29. package/dist/src/components/molecules/ContactCardList/index.js +1 -0
  30. package/dist/src/components/molecules/ContactCardList/index.ts +2 -0
  31. package/dist/src/components/molecules/ExpertCardList/ExpertCardList.scss +3 -2
  32. package/dist/src/components/molecules/RatafiaSubscriptionCard/RatafiaSubscriptionCard.scss +1 -1
  33. package/dist/src/components/molecules/index.d.ts +1 -0
  34. package/dist/src/components/molecules/index.js +1 -0
  35. package/dist/src/components/molecules/index.ts +1 -0
  36. package/dist/src/components/organisms/ContactContent/ContactContent.d.ts +4 -0
  37. package/dist/src/components/organisms/ContactContent/ContactContent.js +9 -0
  38. package/dist/src/components/{sections/AboutUsSection/AboutUsSection.styled.d.ts → organisms/ContactContent/ContactContent.styled.d.ts} +1 -1
  39. package/dist/src/components/organisms/ContactContent/ContactContent.styled.js +28 -0
  40. package/dist/src/components/organisms/ContactContent/ContactContent.styled.ts +29 -0
  41. package/dist/src/components/organisms/ContactContent/ContactContent.tsx +20 -0
  42. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.d.ts +6 -0
  43. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.js +1 -0
  44. package/dist/src/components/organisms/ContactContent/ContactContentProps.types.ts +7 -0
  45. package/dist/src/components/organisms/ContactContent/index.d.ts +2 -0
  46. package/dist/src/components/organisms/ContactContent/index.js +1 -0
  47. package/dist/src/components/organisms/ContactContent/index.ts +2 -0
  48. package/dist/src/components/organisms/index.d.ts +1 -0
  49. package/dist/src/components/organisms/index.js +1 -0
  50. package/dist/src/components/organisms/index.ts +1 -0
  51. package/dist/src/components/sections/AboutUsSection/AboutUsSection.js +2 -2
  52. package/dist/src/components/sections/AboutUsSection/AboutUsSection.scss +52 -0
  53. package/dist/src/components/sections/AboutUsSection/AboutUsSection.tsx +3 -3
  54. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.js +3 -3
  55. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.scss +36 -0
  56. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.tsx +5 -21
  57. package/dist/src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.d.ts +3 -6
  58. package/dist/src/components/sections/AsSeeInSection/AsSeeInSectionProps.types.ts +3 -6
  59. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.js +2 -2
  60. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.scss +50 -0
  61. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.tsx +3 -3
  62. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.js +2 -2
  63. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.scss +57 -0
  64. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.tsx +3 -3
  65. package/dist/src/components/sections/BlogSection/BlogSection.js +1 -2
  66. package/dist/src/components/sections/BlogSection/BlogSection.scss +33 -0
  67. package/dist/src/components/sections/BlogSection/BlogSection.tsx +2 -3
  68. package/dist/src/components/sections/ContactSection/ContactSection.js +2 -2
  69. package/dist/src/components/sections/ContactSection/{ContactSection.styled.ts → ContactSection.scss} +9 -9
  70. package/dist/src/components/sections/ContactSection/ContactSection.tsx +3 -3
  71. package/dist/src/components/sections/ExpertsSection/ExpertsSection.js +2 -2
  72. package/dist/src/components/sections/ExpertsSection/ExpertsSection.scss +25 -0
  73. package/dist/src/components/sections/ExpertsSection/ExpertsSection.tsx +3 -3
  74. package/dist/src/components/sections/FaqSection/FaqSection.js +2 -2
  75. package/dist/src/components/sections/FaqSection/FaqSection.scss +31 -0
  76. package/dist/src/components/sections/FaqSection/FaqSection.tsx +3 -3
  77. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.js +2 -2
  78. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.scss +57 -0
  79. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.tsx +3 -3
  80. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.js +1 -2
  81. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.scss +15 -0
  82. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.tsx +2 -3
  83. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.js +2 -2
  84. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.scss +12 -0
  85. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.tsx +3 -3
  86. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.js +2 -2
  87. package/dist/src/components/sections/HowGetYourFormsSection/{HowGetYourFormsSection.styled.ts → HowGetYourFormsSection.scss} +8 -7
  88. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.tsx +3 -3
  89. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.js +2 -2
  90. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.scss +41 -0
  91. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.tsx +3 -6
  92. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.js +2 -2
  93. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.scss +41 -0
  94. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.tsx +3 -3
  95. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.js +2 -2
  96. package/dist/src/components/sections/LearnMoreSection/{LearnMoreSection.styled.ts → LearnMoreSection.scss} +12 -12
  97. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.tsx +3 -3
  98. package/dist/src/components/sections/LegalSection/LegalSection.js +2 -2
  99. package/dist/src/components/sections/LegalSection/LegalSection.scss +120 -0
  100. package/dist/src/components/sections/LegalSection/LegalSection.tsx +3 -3
  101. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.js +2 -2
  102. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.scss +47 -0
  103. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.tsx +3 -3
  104. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.js +2 -2
  105. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.scss +42 -0
  106. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.tsx +3 -3
  107. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.js +2 -2
  108. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.scss +53 -0
  109. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.tsx +4 -3
  110. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.js +1 -2
  111. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.scss +69 -0
  112. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.tsx +2 -3
  113. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.js +2 -2
  114. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.scss +11 -0
  115. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.tsx +3 -3
  116. package/dist/src/components/sections/TryUsSection/TryUsSection.js +2 -2
  117. package/dist/src/components/sections/TryUsSection/{TryUsSection.styled.ts → TryUsSection.scss} +5 -5
  118. package/dist/src/components/sections/TryUsSection/TryUsSection.tsx +3 -3
  119. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.js +2 -2
  120. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.scss +62 -0
  121. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.tsx +3 -3
  122. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.js +2 -2
  123. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.scss +35 -0
  124. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.tsx +4 -3
  125. package/dist/src/globalStyles/styles.scss +25 -0
  126. package/dist/tsconfig.build.tsbuildinfo +1 -1
  127. package/package.json +1 -1
  128. package/dist/src/components/sections/AboutUsSection/AboutUsSection.styled.js +0 -53
  129. package/dist/src/components/sections/AboutUsSection/AboutUsSection.styled.ts +0 -54
  130. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.d.ts +0 -1
  131. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.js +0 -97
  132. package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.styled.ts +0 -98
  133. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.d.ts +0 -1
  134. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.js +0 -51
  135. package/dist/src/components/sections/AsideMenuSection/AsideMenuSection.styled.ts +0 -52
  136. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.d.ts +0 -1
  137. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.js +0 -54
  138. package/dist/src/components/sections/BenefitsRatafiaSection/BenefitsRatafiaSection.styled.ts +0 -55
  139. package/dist/src/components/sections/BlogSection/BlogSection.styled.js +0 -32
  140. package/dist/src/components/sections/BlogSection/BlogSection.styled.ts +0 -33
  141. package/dist/src/components/sections/ContactSection/ContactSection.styled.d.ts +0 -1
  142. package/dist/src/components/sections/ContactSection/ContactSection.styled.js +0 -89
  143. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.d.ts +0 -1
  144. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.js +0 -27
  145. package/dist/src/components/sections/ExpertsSection/ExpertsSection.styled.ts +0 -28
  146. package/dist/src/components/sections/FaqSection/FaqSection.styled.d.ts +0 -1
  147. package/dist/src/components/sections/FaqSection/FaqSection.styled.js +0 -29
  148. package/dist/src/components/sections/FaqSection/FaqSection.styled.ts +0 -30
  149. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.d.ts +0 -1
  150. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.js +0 -56
  151. package/dist/src/components/sections/FeaturesRatafiaSection/FeaturesRatafiaSection.styled.ts +0 -57
  152. package/dist/src/components/sections/FunctionalityCardsSection/FunctionalityCardsSection.styled.d.ts +0 -1
  153. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.d.ts +0 -1
  154. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.js +0 -10
  155. package/dist/src/components/sections/GuidelinesSection/GuidelinesSection.styled.ts +0 -11
  156. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.d.ts +0 -1
  157. package/dist/src/components/sections/HowGetYourFormsSection/HowGetYourFormsSection.styled.js +0 -24
  158. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.d.ts +0 -1
  159. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.js +0 -39
  160. package/dist/src/components/sections/JumbotronRatafiaSection/JumbotronRatafiaSection.styled.ts +0 -40
  161. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.d.ts +0 -1
  162. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.js +0 -40
  163. package/dist/src/components/sections/JumbotronSimplifiedSection/JumbotronSimplifiedSection.styled.ts +0 -41
  164. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.d.ts +0 -1
  165. package/dist/src/components/sections/LearnMoreSection/LearnMoreSection.styled.js +0 -106
  166. package/dist/src/components/sections/LegalSection/LegalSection.styled.d.ts +0 -1
  167. package/dist/src/components/sections/LegalSection/LegalSection.styled.js +0 -121
  168. package/dist/src/components/sections/LegalSection/LegalSection.styled.ts +0 -122
  169. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.d.ts +0 -1
  170. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.js +0 -46
  171. package/dist/src/components/sections/MidBannerRatafiaSection/MidBannerRatafiaSection.styled.ts +0 -47
  172. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.d.ts +0 -1
  173. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.js +0 -43
  174. package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.styled.ts +0 -44
  175. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.d.ts +0 -1
  176. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.js +0 -55
  177. package/dist/src/components/sections/StepsRatafiaSection/StepsRatafiaSection.styled.ts +0 -56
  178. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.d.ts +0 -1
  179. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.js +0 -70
  180. package/dist/src/components/sections/TryItRatafiaSection/TryItRatafiaSection.styled.ts +0 -71
  181. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.d.ts +0 -1
  182. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.js +0 -10
  183. package/dist/src/components/sections/TryOurFreeLegalBlogsSection/TryOurFreeLegalBlogsSection.styled.ts +0 -11
  184. package/dist/src/components/sections/TryUsSection/TryUsSection.styled.d.ts +0 -1
  185. package/dist/src/components/sections/TryUsSection/TryUsSection.styled.js +0 -23
  186. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.d.ts +0 -1
  187. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.js +0 -63
  188. package/dist/src/components/sections/UnsubscribeSection/UnsubscribeSection.styled.ts +0 -64
  189. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.d.ts +0 -1
  190. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.js +0 -36
  191. package/dist/src/components/sections/WhyLawDistrictSection/WhyLawDistrictSection.styled.ts +0 -37
@@ -1,11 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const TryOurFreeLegalBlogsSectionStyled = styled.section`
5
- display: flex;
6
- flex-direction: column;
7
-
8
- @media ${device['landscape-tablets']} {
9
- flex-flow: row nowrap;
10
- }
11
- `
@@ -1 +0,0 @@
1
- export declare const TryUsSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,23 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const TryUsSectionStyled = styled.section `
4
- padding: 2rem;
5
- text-align: center;
6
- background-color: var(--neutral-neutral-6);
7
- color: var(--neutral-neutral-1);
8
-
9
- .m-richText {
10
- max-width: 50rem;
11
- margin: 0 auto;
12
- }
13
-
14
- .e-button {
15
- display: inline-block;
16
- margin-top: 1.5rem;
17
- width: 100%;
18
-
19
- @media ${device['landscape-tablets']} {
20
- width: auto;
21
- }
22
- }
23
- `;
@@ -1 +0,0 @@
1
- export declare const UnsubscribeSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,63 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const UnsubscribeSectionStyled = styled.section `
4
- .unsubscribe {
5
- div:first-child {
6
- background: var(--neutral-neutral-6);
7
- display: flex;
8
- flex-flow: row wrap;
9
- margin-bottom: 4rem;
10
- @media ${device['landscape-tablets']} {
11
- margin: 0 3rem 3rem 3rem;
12
- }
13
- }
14
-
15
- .m-richText p + h2 {
16
- margin-top: 0;
17
- }
18
-
19
- h2 {
20
- color: var(--neutral-neutral-1);
21
- background: var(--others-white);
22
- width: 100%;
23
- font-size: 1.75rem;
24
- padding: 2rem 1rem 1rem 1rem;
25
-
26
- @media ${device['landscape-tablets']} {
27
- font-size: 2rem;
28
- padding: 2.7rem 0 1rem 0;
29
- }
30
- }
31
-
32
- .m-richText h2 + p {
33
- padding-top: 1.5rem;
34
- }
35
-
36
- .m-richText p {
37
- padding: 0 2rem 1.5rem 2rem;
38
- width: 100%;
39
- margin: 0;
40
-
41
- @media ${device.laptop} {
42
- padding: 0 8rem 1.5rem 8rem;
43
- }
44
- @media ${device.laptop} {
45
- padding: 0 15rem 1.5rem 15rem;
46
- }
47
- }
48
-
49
- img {
50
- max-width: 100%;
51
- display: block;
52
- margin: 0;
53
- }
54
-
55
- .image-preview {
56
- margin: 0 auto;
57
- padding: 0.5rem 0;
58
- border: none;
59
- width: auto;
60
- height: auto;
61
- }
62
- }
63
- `;
@@ -1,64 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const UnsubscribeSectionStyled = styled.section`
5
- .unsubscribe {
6
- div:first-child {
7
- background: var(--neutral-neutral-6);
8
- display: flex;
9
- flex-flow: row wrap;
10
- margin-bottom: 4rem;
11
- @media ${device['landscape-tablets']} {
12
- margin: 0 3rem 3rem 3rem;
13
- }
14
- }
15
-
16
- .m-richText p + h2 {
17
- margin-top: 0;
18
- }
19
-
20
- h2 {
21
- color: var(--neutral-neutral-1);
22
- background: var(--others-white);
23
- width: 100%;
24
- font-size: 1.75rem;
25
- padding: 2rem 1rem 1rem 1rem;
26
-
27
- @media ${device['landscape-tablets']} {
28
- font-size: 2rem;
29
- padding: 2.7rem 0 1rem 0;
30
- }
31
- }
32
-
33
- .m-richText h2 + p {
34
- padding-top: 1.5rem;
35
- }
36
-
37
- .m-richText p {
38
- padding: 0 2rem 1.5rem 2rem;
39
- width: 100%;
40
- margin: 0;
41
-
42
- @media ${device.laptop} {
43
- padding: 0 8rem 1.5rem 8rem;
44
- }
45
- @media ${device.laptop} {
46
- padding: 0 15rem 1.5rem 15rem;
47
- }
48
- }
49
-
50
- img {
51
- max-width: 100%;
52
- display: block;
53
- margin: 0;
54
- }
55
-
56
- .image-preview {
57
- margin: 0 auto;
58
- padding: 0.5rem 0;
59
- border: none;
60
- width: auto;
61
- height: auto;
62
- }
63
- }
64
- `
@@ -1 +0,0 @@
1
- export declare const WhyLawDistrictSectionStyled: import("styled-components/dist/types").IStyledComponentBase<"web", import("styled-components").FastOmit<import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLElement>, HTMLElement>, never>> & string;
@@ -1,36 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints';
2
- import styled from 'styled-components';
3
- export const WhyLawDistrictSectionStyled = styled.section `
4
- text-align: center;
5
- background-color: var(--neutral-neutral-6);
6
- width: 100%;
7
- padding-bottom: 2rem;
8
- display: flex;
9
- flex-direction: column;
10
-
11
- @media ${device['landscape-tablets']} {
12
- padding-bottom: 0rem;
13
- display: block;
14
- }
15
-
16
- .whyLawDistrictSection {
17
- &__title {
18
- @media ${device.laptop} {
19
- padding: 0;
20
- }
21
- }
22
-
23
- &__button {
24
- display: flex;
25
- justify-content: center;
26
- width: 80%;
27
- margin-bottom: 1rem;
28
-
29
- @media ${device['landscape-tablets']} {
30
- margin-bottom: 3.5rem;
31
- display: inline-block;
32
- width: auto;
33
- }
34
- }
35
- }
36
- `;
@@ -1,37 +0,0 @@
1
- import { device } from '../../../globalStyles/breakpoints'
2
- import styled from 'styled-components'
3
-
4
- export const WhyLawDistrictSectionStyled = styled.section`
5
- text-align: center;
6
- background-color: var(--neutral-neutral-6);
7
- width: 100%;
8
- padding-bottom: 2rem;
9
- display: flex;
10
- flex-direction: column;
11
-
12
- @media ${device['landscape-tablets']} {
13
- padding-bottom: 0rem;
14
- display: block;
15
- }
16
-
17
- .whyLawDistrictSection {
18
- &__title {
19
- @media ${device.laptop} {
20
- padding: 0;
21
- }
22
- }
23
-
24
- &__button {
25
- display: flex;
26
- justify-content: center;
27
- width: 80%;
28
- margin-bottom: 1rem;
29
-
30
- @media ${device['landscape-tablets']} {
31
- margin-bottom: 3.5rem;
32
- display: inline-block;
33
- width: auto;
34
- }
35
- }
36
- }
37
- `