@npm_leadtech/legal-lib-components 2.23.5 → 2.24.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.
- package/dist/cjs/index.js +3 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +144 -111
- package/dist/cjs/src/components/organisms/index.d.ts +3 -4
- package/dist/cjs/src/components/sections/LearnMoreSection/LearnMoreSection.d.ts +5 -0
- package/dist/cjs/src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.d.ts +7 -0
- package/dist/cjs/src/components/sections/LearnMoreSection/index.d.ts +2 -0
- package/dist/cjs/src/components/sections/index.d.ts +1 -0
- package/dist/esm/index.js +2 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +144 -111
- package/dist/esm/src/components/organisms/index.d.ts +3 -4
- package/dist/esm/src/components/sections/LearnMoreSection/LearnMoreSection.d.ts +5 -0
- package/dist/esm/src/components/sections/LearnMoreSection/LearnMoreSectionProps.types.d.ts +7 -0
- package/dist/esm/src/components/sections/LearnMoreSection/index.d.ts +2 -0
- package/dist/esm/src/components/sections/index.d.ts +1 -0
- package/dist/index.d.ts +30 -28
- package/package.json +1 -1
- package/dist/cjs/src/components/organisms/CookiePolicyBar/CookiePolicyBar.d.ts +0 -4
- package/dist/cjs/src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.d.ts +0 -4
- package/dist/cjs/src/components/organisms/CookiePolicyBar/index.d.ts +0 -2
- package/dist/esm/src/components/organisms/CookiePolicyBar/CookiePolicyBar.d.ts +0 -4
- package/dist/esm/src/components/organisms/CookiePolicyBar/CookiePolicyBarProps.d.ts +0 -4
- package/dist/esm/src/components/organisms/CookiePolicyBar/index.d.ts +0 -2
|
@@ -3987,6 +3987,75 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3987
3987
|
right: 0;
|
|
3988
3988
|
padding: 8px; }
|
|
3989
3989
|
|
|
3990
|
+
.articles_wrapper {
|
|
3991
|
+
display: flex;
|
|
3992
|
+
flex-direction: column;
|
|
3993
|
+
align-items: stretch; }
|
|
3994
|
+
@media (min-width: 960px) {
|
|
3995
|
+
.articles_wrapper {
|
|
3996
|
+
flex-direction: row; } }
|
|
3997
|
+
|
|
3998
|
+
.homeSteps__container {
|
|
3999
|
+
transform: translateY(0%); }
|
|
4000
|
+
@media (min-width: 575px) {
|
|
4001
|
+
.homeSteps__container {
|
|
4002
|
+
transform: translateY(0%); } }
|
|
4003
|
+
@media (min-width: 720px) {
|
|
4004
|
+
.homeSteps__container {
|
|
4005
|
+
transform: translateY(0%); } }
|
|
4006
|
+
.homeSteps__container .homeSteps {
|
|
4007
|
+
display: flex;
|
|
4008
|
+
flex-direction: column;
|
|
4009
|
+
align-items: center;
|
|
4010
|
+
padding-top: 2rem;
|
|
4011
|
+
padding-bottom: 2rem;
|
|
4012
|
+
position: relative; }
|
|
4013
|
+
.homeSteps__container .homeSteps .homeStepsItemsContainer {
|
|
4014
|
+
display: flex;
|
|
4015
|
+
justify-content: space-between;
|
|
4016
|
+
width: 100%;
|
|
4017
|
+
max-width: 888px;
|
|
4018
|
+
flex-flow: row wrap;
|
|
4019
|
+
padding: 0 1rem; }
|
|
4020
|
+
@media (min-width: 960px) {
|
|
4021
|
+
.homeSteps__container .homeSteps .homeStepsItemsContainer {
|
|
4022
|
+
flex-flow: row nowrap;
|
|
4023
|
+
padding: 0; } }
|
|
4024
|
+
|
|
4025
|
+
.mobile-bottom-bar {
|
|
4026
|
+
background: var(--others-white);
|
|
4027
|
+
position: fixed;
|
|
4028
|
+
display: flex;
|
|
4029
|
+
flex-direction: row;
|
|
4030
|
+
justify-content: space-between;
|
|
4031
|
+
bottom: 0;
|
|
4032
|
+
height: 3.25rem;
|
|
4033
|
+
width: 100%;
|
|
4034
|
+
box-shadow: 0px 2px 6px 0px rgba(var(--primary-main-dark-1-rgb), 0.25);
|
|
4035
|
+
z-index: 1; }
|
|
4036
|
+
@media (min-width: 575px) {
|
|
4037
|
+
.mobile-bottom-bar {
|
|
4038
|
+
display: none; } }
|
|
4039
|
+
.mobile-bottom-bar--active {
|
|
4040
|
+
display: flex; }
|
|
4041
|
+
.mobile-bottom-bar .e-button {
|
|
4042
|
+
max-height: 2.8rem;
|
|
4043
|
+
margin: 0 0.5rem;
|
|
4044
|
+
width: 2.75rem;
|
|
4045
|
+
min-width: 2.75rem;
|
|
4046
|
+
padding: 0;
|
|
4047
|
+
outline: none;
|
|
4048
|
+
display: flex;
|
|
4049
|
+
align-items: center;
|
|
4050
|
+
justify-content: center;
|
|
4051
|
+
background-color: var(--primary-main);
|
|
4052
|
+
border-color: var(--primary-main); }
|
|
4053
|
+
.mobile-bottom-bar .e-button:hover {
|
|
4054
|
+
cursor: pointer; }
|
|
4055
|
+
.mobile-bottom-bar .e-button svg {
|
|
4056
|
+
width: 24px;
|
|
4057
|
+
margin: 0; }
|
|
4058
|
+
|
|
3990
4059
|
.about-us-content {
|
|
3991
4060
|
display: flex;
|
|
3992
4061
|
flex-flow: row wrap;
|
|
@@ -4026,14 +4095,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
4026
4095
|
.about-us-content__image img {
|
|
4027
4096
|
width: 100%; }
|
|
4028
4097
|
|
|
4029
|
-
.articles_wrapper {
|
|
4030
|
-
display: flex;
|
|
4031
|
-
flex-direction: column;
|
|
4032
|
-
align-items: stretch; }
|
|
4033
|
-
@media (min-width: 960px) {
|
|
4034
|
-
.articles_wrapper {
|
|
4035
|
-
flex-direction: row; } }
|
|
4036
|
-
|
|
4037
4098
|
.as-see-in-content {
|
|
4038
4099
|
display: flex; }
|
|
4039
4100
|
.as-see-in-content__text {
|
|
@@ -4047,48 +4108,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
4047
4108
|
color: var(--primary-main-light-1);
|
|
4048
4109
|
font-weight: 400 !important; }
|
|
4049
4110
|
|
|
4050
|
-
.fixed-container {
|
|
4051
|
-
display: flex;
|
|
4052
|
-
flex-direction: column;
|
|
4053
|
-
position: fixed;
|
|
4054
|
-
bottom: 0;
|
|
4055
|
-
z-index: 3;
|
|
4056
|
-
width: 100%; }
|
|
4057
|
-
|
|
4058
|
-
.cookie-policy-bar {
|
|
4059
|
-
display: flex;
|
|
4060
|
-
flex-direction: column;
|
|
4061
|
-
align-items: center;
|
|
4062
|
-
width: 100%;
|
|
4063
|
-
padding: 0 1.5rem 1rem;
|
|
4064
|
-
background-color: black;
|
|
4065
|
-
color: var(--others-white); }
|
|
4066
|
-
@media (min-width: 575px) {
|
|
4067
|
-
.cookie-policy-bar {
|
|
4068
|
-
flex-direction: row;
|
|
4069
|
-
align-items: center;
|
|
4070
|
-
padding-bottom: 0;
|
|
4071
|
-
justify-content: center; } }
|
|
4072
|
-
|
|
4073
|
-
.cookie-policy-bar__text {
|
|
4074
|
-
margin: 1rem 0 0.5rem;
|
|
4075
|
-
max-width: 48rem; }
|
|
4076
|
-
@media (min-width: 575px) {
|
|
4077
|
-
.cookie-policy-bar__text {
|
|
4078
|
-
margin-bottom: 1rem;
|
|
4079
|
-
margin-right: 1.5rem; } }
|
|
4080
|
-
@media (min-width: 960px) {
|
|
4081
|
-
.cookie-policy-bar__text {
|
|
4082
|
-
margin-right: 2.5rem; } }
|
|
4083
|
-
.cookie-policy-bar__text a {
|
|
4084
|
-
text-decoration: underline;
|
|
4085
|
-
color: var(--others-white); }
|
|
4086
|
-
.cookie-policy-bar__text p {
|
|
4087
|
-
margin-bottom: 0; }
|
|
4088
|
-
|
|
4089
|
-
.accept-cookies-button {
|
|
4090
|
-
white-space: nowrap; }
|
|
4091
|
-
|
|
4092
4111
|
.guidelines-section__texts {
|
|
4093
4112
|
flex-basis: 50%;
|
|
4094
4113
|
display: flex;
|
|
@@ -4139,67 +4158,6 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
4139
4158
|
.guidelines-section__image.is-mobile {
|
|
4140
4159
|
display: none; } }
|
|
4141
4160
|
|
|
4142
|
-
.homeSteps__container {
|
|
4143
|
-
transform: translateY(0%); }
|
|
4144
|
-
@media (min-width: 575px) {
|
|
4145
|
-
.homeSteps__container {
|
|
4146
|
-
transform: translateY(0%); } }
|
|
4147
|
-
@media (min-width: 720px) {
|
|
4148
|
-
.homeSteps__container {
|
|
4149
|
-
transform: translateY(0%); } }
|
|
4150
|
-
.homeSteps__container .homeSteps {
|
|
4151
|
-
display: flex;
|
|
4152
|
-
flex-direction: column;
|
|
4153
|
-
align-items: center;
|
|
4154
|
-
padding-top: 2rem;
|
|
4155
|
-
padding-bottom: 2rem;
|
|
4156
|
-
position: relative; }
|
|
4157
|
-
.homeSteps__container .homeSteps .homeStepsItemsContainer {
|
|
4158
|
-
display: flex;
|
|
4159
|
-
justify-content: space-between;
|
|
4160
|
-
width: 100%;
|
|
4161
|
-
max-width: 888px;
|
|
4162
|
-
flex-flow: row wrap;
|
|
4163
|
-
padding: 0 1rem; }
|
|
4164
|
-
@media (min-width: 960px) {
|
|
4165
|
-
.homeSteps__container .homeSteps .homeStepsItemsContainer {
|
|
4166
|
-
flex-flow: row nowrap;
|
|
4167
|
-
padding: 0; } }
|
|
4168
|
-
|
|
4169
|
-
.mobile-bottom-bar {
|
|
4170
|
-
background: var(--others-white);
|
|
4171
|
-
position: fixed;
|
|
4172
|
-
display: flex;
|
|
4173
|
-
flex-direction: row;
|
|
4174
|
-
justify-content: space-between;
|
|
4175
|
-
bottom: 0;
|
|
4176
|
-
height: 3.25rem;
|
|
4177
|
-
width: 100%;
|
|
4178
|
-
box-shadow: 0px 2px 6px 0px rgba(var(--primary-main-dark-1-rgb), 0.25);
|
|
4179
|
-
z-index: 1; }
|
|
4180
|
-
@media (min-width: 575px) {
|
|
4181
|
-
.mobile-bottom-bar {
|
|
4182
|
-
display: none; } }
|
|
4183
|
-
.mobile-bottom-bar--active {
|
|
4184
|
-
display: flex; }
|
|
4185
|
-
.mobile-bottom-bar .e-button {
|
|
4186
|
-
max-height: 2.8rem;
|
|
4187
|
-
margin: 0 0.5rem;
|
|
4188
|
-
width: 2.75rem;
|
|
4189
|
-
min-width: 2.75rem;
|
|
4190
|
-
padding: 0;
|
|
4191
|
-
outline: none;
|
|
4192
|
-
display: flex;
|
|
4193
|
-
align-items: center;
|
|
4194
|
-
justify-content: center;
|
|
4195
|
-
background-color: var(--primary-main);
|
|
4196
|
-
border-color: var(--primary-main); }
|
|
4197
|
-
.mobile-bottom-bar .e-button:hover {
|
|
4198
|
-
cursor: pointer; }
|
|
4199
|
-
.mobile-bottom-bar .e-button svg {
|
|
4200
|
-
width: 24px;
|
|
4201
|
-
margin: 0; }
|
|
4202
|
-
|
|
4203
4161
|
.try-our-free-legal-blogs-section__texts {
|
|
4204
4162
|
flex-basis: 50%;
|
|
4205
4163
|
display: flex;
|
|
@@ -4403,3 +4361,78 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
4403
4361
|
margin-bottom: 3.5rem;
|
|
4404
4362
|
display: inline-block;
|
|
4405
4363
|
width: auto; } }
|
|
4364
|
+
|
|
4365
|
+
.learn-more__wrapper {
|
|
4366
|
+
margin-bottom: 4rem;
|
|
4367
|
+
background-color: var(--neutral-neutral-6); }
|
|
4368
|
+
@media (min-width: 720px) {
|
|
4369
|
+
.learn-more__wrapper {
|
|
4370
|
+
background: var(--neutral-neutral-6) url(../../../../images/png/grey-01-lc.png) no-repeat bottom left/21rem; } }
|
|
4371
|
+
.learn-more__wrapper .wrapper {
|
|
4372
|
+
display: flex;
|
|
4373
|
+
flex-flow: row wrap;
|
|
4374
|
+
justify-content: space-between;
|
|
4375
|
+
max-width: 960px; }
|
|
4376
|
+
.learn-more__wrapper .learn-more__info {
|
|
4377
|
+
width: 100%;
|
|
4378
|
+
padding: 0 1rem;
|
|
4379
|
+
display: flex;
|
|
4380
|
+
flex-flow: column wrap;
|
|
4381
|
+
justify-content: center; }
|
|
4382
|
+
@media (min-width: 960px) {
|
|
4383
|
+
.learn-more__wrapper .learn-more__info {
|
|
4384
|
+
width: 35%; } }
|
|
4385
|
+
@media (min-width: 720px) {
|
|
4386
|
+
.learn-more__wrapper .learn-more__info {
|
|
4387
|
+
width: 42%; } }
|
|
4388
|
+
.learn-more__wrapper .learn-more__title {
|
|
4389
|
+
margin-top: 2rem; }
|
|
4390
|
+
@media (min-width: 720px) {
|
|
4391
|
+
.learn-more__wrapper .learn-more__title {
|
|
4392
|
+
margin-top: -2rem; } }
|
|
4393
|
+
.learn-more__wrapper .learn-more__description {
|
|
4394
|
+
margin-top: 2rem; }
|
|
4395
|
+
.learn-more__wrapper .learn-more__faqs {
|
|
4396
|
+
width: 100%;
|
|
4397
|
+
margin: 0 1rem;
|
|
4398
|
+
background-color: var(--others-white);
|
|
4399
|
+
border-radius: 4px;
|
|
4400
|
+
box-shadow: 0 0.25rem 0.5rem 0 rgba(var(--primary-main-dark-1-rgb), 0.2);
|
|
4401
|
+
padding: 2rem;
|
|
4402
|
+
transform: translateY(2rem); }
|
|
4403
|
+
@media (min-width: 960px) {
|
|
4404
|
+
.learn-more__wrapper .learn-more__faqs {
|
|
4405
|
+
width: 46%;
|
|
4406
|
+
padding: 3rem; } }
|
|
4407
|
+
@media (min-width: 720px) {
|
|
4408
|
+
.learn-more__wrapper .learn-more__faqs {
|
|
4409
|
+
width: 52%;
|
|
4410
|
+
margin-right: 1rem; } }
|
|
4411
|
+
.learn-more__wrapper .learn-more__faqs .e-button {
|
|
4412
|
+
display: inline-block;
|
|
4413
|
+
height: 44px; }
|
|
4414
|
+
.learn-more__wrapper .learn-more__faqs ul {
|
|
4415
|
+
padding: 0; }
|
|
4416
|
+
.learn-more__wrapper .learn-more__faqs li {
|
|
4417
|
+
padding-bottom: 1rem; }
|
|
4418
|
+
.learn-more__wrapper .learn-more__faqs li a {
|
|
4419
|
+
font-weight: bold;
|
|
4420
|
+
transition: all 0.3s ease;
|
|
4421
|
+
border-radius: 4px;
|
|
4422
|
+
display: inline-block;
|
|
4423
|
+
padding: 0.5rem;
|
|
4424
|
+
position: relative; }
|
|
4425
|
+
.learn-more__wrapper .learn-more__faqs li a:hover {
|
|
4426
|
+
background-color: var(--primary-main-light-5);
|
|
4427
|
+
padding-right: 1.5rem; }
|
|
4428
|
+
.learn-more__wrapper .learn-more__faqs li a:hover:before {
|
|
4429
|
+
content: '';
|
|
4430
|
+
background: url("data:image/svg+xml,%3Csvg xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22 xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22 width%3D%2224%22 height%3D%2224%22 viewBox%3D%220 0 24 24%22%3E %3Cdefs%3E %3Cpath id%3D%22prefix__a%22 d%3D%22M9.705 6L8.295 7.41 12.875 12 8.295 16.59 9.705 18 15.705 12z%22%2F%3E %3C%2Fdefs%3E %3Cg fill%3D%22none%22 fill-rule%3D%22evenodd%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3Cmask id%3D%22prefix__b%22 fill%3D%22%23fff%22%3E %3Cuse xlink%3Ahref%3D%22%23prefix__a%22%2F%3E %3C%2Fmask%3E %3Cg fill%3D%22%233D4042%22 mask%3D%22url(%23prefix__b)%22%3E %3Cpath d%3D%22M0 0H24V24H0z%22%2F%3E %3C%2Fg%3E %3C%2Fg%3E%3C%2Fsvg%3E") no-repeat 0 100%/cover;
|
|
4431
|
+
right: 0;
|
|
4432
|
+
top: 50%;
|
|
4433
|
+
position: absolute;
|
|
4434
|
+
width: 1.5rem;
|
|
4435
|
+
height: 1.5rem;
|
|
4436
|
+
transform: translateY(-50%); }
|
|
4437
|
+
.learn-more__wrapper .learn-more__faqs a {
|
|
4438
|
+
color: var(--primary-main-dark-1); }
|
|
@@ -1,8 +1,7 @@
|
|
|
1
|
-
export * from './AboutUsContent';
|
|
2
1
|
export * from './ArticlesList';
|
|
3
|
-
export * from './AsSeeInContent';
|
|
4
|
-
export * from './CookiePolicyBar';
|
|
5
|
-
export * from './GuidelinesContent';
|
|
6
2
|
export * from './ListStepsGetForm';
|
|
7
3
|
export * from './MobileBottomBar';
|
|
4
|
+
export * from './AboutUsContent';
|
|
5
|
+
export * from './AsSeeInContent';
|
|
6
|
+
export * from './GuidelinesContent';
|
|
8
7
|
export * from './TryOurFreeLegalBlogsContent';
|