@npm_leadtech/legal-lib-components 2.45.10 → 2.45.11
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 +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/legal-lib-components.css +3 -2
- package/dist/cjs/src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktopProps.types.d.ts +1 -1
- package/dist/cjs/src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobileProps.types.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/legal-lib-components.css +3 -2
- package/dist/esm/src/components/molecules/PhoneContactBoxDesktop/PhoneContactBoxDesktopProps.types.d.ts +1 -1
- package/dist/esm/src/components/molecules/PhoneContactBoxMobile/PhoneContactBoxMobileProps.types.d.ts +1 -1
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -3992,7 +3992,8 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
3992
3992
|
|
|
3993
3993
|
.phone-mobile-contact-button {
|
|
3994
3994
|
display: flex;
|
|
3995
|
-
justify-content: center;
|
|
3995
|
+
justify-content: center;
|
|
3996
|
+
margin-bottom: 1rem; }
|
|
3996
3997
|
.phone-mobile-contact-button:before {
|
|
3997
3998
|
content: '';
|
|
3998
3999
|
width: 20px;
|
|
@@ -4003,7 +4004,7 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
|
|
|
4003
4004
|
.phone-mobile-contact-text {
|
|
4004
4005
|
color: var(--neutral-neutral-2);
|
|
4005
4006
|
text-align: center;
|
|
4006
|
-
margin:
|
|
4007
|
+
margin: 0rem 0 2rem; }
|
|
4007
4008
|
|
|
4008
4009
|
.popular-docs {
|
|
4009
4010
|
width: 80%;
|
package/dist/index.d.ts
CHANGED
|
@@ -761,14 +761,14 @@ interface PaginationProps {
|
|
|
761
761
|
declare const Pagination: FC<PaginationProps>;
|
|
762
762
|
|
|
763
763
|
interface PhoneContactBoxDesktopProps {
|
|
764
|
-
|
|
764
|
+
phones: string[];
|
|
765
765
|
schedule: string;
|
|
766
766
|
}
|
|
767
767
|
|
|
768
768
|
declare const PhoneContactBoxDesktop: React$1.FC<PhoneContactBoxDesktopProps>;
|
|
769
769
|
|
|
770
770
|
interface PhoneContactBoxMobileProps {
|
|
771
|
-
|
|
771
|
+
phones: string[];
|
|
772
772
|
schedule: string;
|
|
773
773
|
}
|
|
774
774
|
|