@npm_leadtech/legal-lib-components 2.18.8 → 2.18.9

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.
@@ -3819,7 +3819,8 @@ 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
+ padding: 1rem;
3823
+ text-align: left; }
3823
3824
  @media (min-width: 720px) {
3824
3825
  .modal-free-doc .right-container {
3825
3826
  width: 60%;
@@ -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
  }