@npm_leadtech/legal-lib-components 2.18.8 → 2.18.10

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.
@@ -3810,7 +3810,7 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3810
3810
  .modal-free-doc {
3811
3811
  display: flex;
3812
3812
  flex-direction: column;
3813
- max-width: 325px; }
3813
+ max-width: 370px; }
3814
3814
  @media (min-width: 720px) {
3815
3815
  .modal-free-doc {
3816
3816
  flex-direction: row;
@@ -3819,7 +3819,7 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3819
3819
  .modal-free-doc .right-container {
3820
3820
  display: flex;
3821
3821
  width: 100%;
3822
- padding: 1rem; }
3822
+ text-align: left; }
3823
3823
  @media (min-width: 720px) {
3824
3824
  .modal-free-doc .right-container {
3825
3825
  width: 60%;
@@ -3828,7 +3828,7 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3828
3828
  display: flex;
3829
3829
  flex-direction: column;
3830
3830
  border: none;
3831
- padding: 1rem; }
3831
+ padding: 1.75rem; }
3832
3832
  @media (min-width: 720px) {
3833
3833
  .modal-free-doc .right-container .info-box {
3834
3834
  padding: 1rem 0 0 1rem; } }
@@ -3852,7 +3852,7 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3852
3852
  width: auto; } }
3853
3853
  .modal-free-doc .right-container .info-box__button-box button {
3854
3854
  min-height: 3rem;
3855
- width: 100%; }
3855
+ width: auto; }
3856
3856
  .modal-free-doc .modal-free-close-mobile {
3857
3857
  display: flex;
3858
3858
  position: relative;
@@ -1,4 +1,6 @@
1
1
  export interface ModalFreeDocProps {
2
2
  productName?: string;
3
3
  closeModal: () => void;
4
+ urlWordDoc: string;
5
+ urlPdfDoc: string;
4
6
  }