@npm_leadtech/legal-lib-components 5.2.12 → 5.2.13
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/css/styles.css +24 -5
- package/dist/src/components/molecules/TrustworthyWebsites/TrustworthyWebsites.scss +1 -1
- package/dist/src/components/organisms/GuidelinesContent/GuidelinesContent.scss +8 -2
- package/dist/src/components/sections/AsSeeInSection/AsSeeInSection.scss +7 -2
- package/dist/src/components/sections/PeopleSayAboutUsSection/PeopleSayAboutUsSection.scss +5 -0
- package/package.json +1 -1
package/dist/css/styles.css
CHANGED
|
@@ -6410,7 +6410,7 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6410
6410
|
}
|
|
6411
6411
|
.trustworthy-websites__image {
|
|
6412
6412
|
margin: 1.5rem;
|
|
6413
|
-
max-width:
|
|
6413
|
+
max-width: 7rem;
|
|
6414
6414
|
}
|
|
6415
6415
|
.type-modules-list {
|
|
6416
6416
|
display: flex;
|
|
@@ -6851,8 +6851,15 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6851
6851
|
}
|
|
6852
6852
|
.guidelines-section-main {
|
|
6853
6853
|
display: flex;
|
|
6854
|
-
flex-direction:
|
|
6854
|
+
flex-direction: column;
|
|
6855
6855
|
flex-wrap: nowrap;
|
|
6856
|
+
padding: 1.5rem;
|
|
6857
|
+
}
|
|
6858
|
+
@media (min-width: 960px) {
|
|
6859
|
+
.guidelines-section-main {
|
|
6860
|
+
flex-direction: row;
|
|
6861
|
+
padding: 0;
|
|
6862
|
+
}
|
|
6856
6863
|
}
|
|
6857
6864
|
.guidelines-section__texts {
|
|
6858
6865
|
flex-basis: 50%;
|
|
@@ -6909,7 +6916,7 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
6909
6916
|
}
|
|
6910
6917
|
}
|
|
6911
6918
|
.guidelines-section__image.is-mobile {
|
|
6912
|
-
display:
|
|
6919
|
+
display: none;
|
|
6913
6920
|
}
|
|
6914
6921
|
@media (min-width: 720px) {
|
|
6915
6922
|
.guidelines-section__image.is-mobile {
|
|
@@ -7511,9 +7518,14 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
7511
7518
|
flex-direction: column;
|
|
7512
7519
|
box-shadow: 0px 2px 6px 0px rgba(2, 55, 74, 0.25);
|
|
7513
7520
|
background: var(--others-white);
|
|
7514
|
-
transform: translateY(-
|
|
7521
|
+
transform: translateY(-5rem);
|
|
7515
7522
|
padding: 1.5rem 0;
|
|
7516
7523
|
}
|
|
7524
|
+
@media (min-width: 960px) {
|
|
7525
|
+
.as-seen-in-section-box .as-seen-in-section {
|
|
7526
|
+
transform: translateY(-50%);
|
|
7527
|
+
}
|
|
7528
|
+
}
|
|
7517
7529
|
.as-seen-in-section-box .as-seen-in-section__title {
|
|
7518
7530
|
text-align: center;
|
|
7519
7531
|
font-size: 32px;
|
|
@@ -7551,11 +7563,12 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
7551
7563
|
display: flex;
|
|
7552
7564
|
justify-content: center;
|
|
7553
7565
|
flex-direction: column;
|
|
7554
|
-
gap:
|
|
7566
|
+
gap: 1rem;
|
|
7555
7567
|
}
|
|
7556
7568
|
@media (min-width: 960px) {
|
|
7557
7569
|
.contact-us-section-blocks {
|
|
7558
7570
|
flex-direction: row;
|
|
7571
|
+
gap: 2.5rem;
|
|
7559
7572
|
}
|
|
7560
7573
|
}
|
|
7561
7574
|
.contact-us-section-blocks__item {
|
|
@@ -8229,6 +8242,12 @@ html[data-theme=lawdistrict] .document-status.--is-new .icon {
|
|
|
8229
8242
|
width: 100%;
|
|
8230
8243
|
margin: 0 auto;
|
|
8231
8244
|
text-align: center;
|
|
8245
|
+
padding: 1.5rem;
|
|
8246
|
+
}
|
|
8247
|
+
@media (min-width: 960px) {
|
|
8248
|
+
.people-say {
|
|
8249
|
+
padding: 0;
|
|
8250
|
+
}
|
|
8232
8251
|
}
|
|
8233
8252
|
@media (min-width: 1200px) {
|
|
8234
8253
|
.people-say {
|
|
@@ -4,8 +4,14 @@
|
|
|
4
4
|
.guidelines-section {
|
|
5
5
|
&-main {
|
|
6
6
|
display: flex;
|
|
7
|
-
flex-direction:
|
|
7
|
+
flex-direction: column;
|
|
8
8
|
flex-wrap: nowrap;
|
|
9
|
+
padding: 1.5rem;
|
|
10
|
+
|
|
11
|
+
@include laptop {
|
|
12
|
+
flex-direction: row;
|
|
13
|
+
padding: 0;
|
|
14
|
+
}
|
|
9
15
|
}
|
|
10
16
|
|
|
11
17
|
&__texts {
|
|
@@ -65,7 +71,7 @@
|
|
|
65
71
|
}
|
|
66
72
|
|
|
67
73
|
&.is-mobile {
|
|
68
|
-
display:
|
|
74
|
+
display: none;
|
|
69
75
|
|
|
70
76
|
@include landscape-tablets {
|
|
71
77
|
display: none;
|
|
@@ -14,9 +14,13 @@
|
|
|
14
14
|
flex-direction: column;
|
|
15
15
|
box-shadow: 0px 2px 6px 0px rgba(2, 55, 74, 0.25);
|
|
16
16
|
background: get-color(others, white);
|
|
17
|
-
transform: translateY(-
|
|
17
|
+
transform: translateY(-5rem);
|
|
18
18
|
padding: 1.5rem 0;
|
|
19
19
|
|
|
20
|
+
@include laptop {
|
|
21
|
+
transform: translateY(-50%);
|
|
22
|
+
}
|
|
23
|
+
|
|
20
24
|
&__title {
|
|
21
25
|
text-align: center;
|
|
22
26
|
font-size: 32px;
|
|
@@ -59,10 +63,11 @@
|
|
|
59
63
|
display: flex;
|
|
60
64
|
justify-content: center;
|
|
61
65
|
flex-direction: column;
|
|
62
|
-
gap:
|
|
66
|
+
gap: 1rem;
|
|
63
67
|
|
|
64
68
|
@include laptop {
|
|
65
69
|
flex-direction: row;
|
|
70
|
+
gap: 2.5rem;
|
|
66
71
|
}
|
|
67
72
|
|
|
68
73
|
&__item {
|