@npm_leadtech/legal-lib-components 2.45.10 → 2.46.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.
@@ -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: 0.5rem 0 2rem; }
4007
+ margin: 0rem 0 2rem; }
4007
4008
 
4008
4009
  .popular-docs {
4009
4010
  width: 80%;
@@ -1,4 +1,4 @@
1
1
  export interface PhoneContactBoxDesktopProps {
2
- phone: string;
2
+ phones: string[];
3
3
  schedule: string;
4
4
  }
@@ -1,4 +1,4 @@
1
1
  export interface PhoneContactBoxMobileProps {
2
- phone: string;
2
+ phones: string[];
3
3
  schedule: string;
4
4
  }