@npm_leadtech/legal-lib-components 2.18.0 → 2.18.1

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.
@@ -3807,6 +3807,88 @@ html[data-theme='lawdistrict'] .document-status.--is-new {
3807
3807
  .expert-card-list {
3808
3808
  flex-direction: row; } }
3809
3809
 
3810
+ .modal-free-doc {
3811
+ display: flex;
3812
+ flex-direction: column;
3813
+ max-width: 325px; }
3814
+ @media (min-width: 720px) {
3815
+ .modal-free-doc {
3816
+ flex-direction: row;
3817
+ max-width: 620px; } }
3818
+ .modal-free-doc .left-container {
3819
+ width: 100%;
3820
+ height: 11.875rem;
3821
+ display: flex;
3822
+ justify-content: center;
3823
+ background-image: url("../../../../images/png/img-modal-template-mobile.png");
3824
+ background-size: contain;
3825
+ background-repeat: no-repeat; }
3826
+ @media (min-width: 720px) {
3827
+ .modal-free-doc .left-container {
3828
+ background-image: url("../../../../images/png/img-modal-template.png");
3829
+ height: auto;
3830
+ width: 35%; } }
3831
+ .modal-free-doc .right-container {
3832
+ display: flex;
3833
+ width: 100%;
3834
+ padding: 1rem; }
3835
+ @media (min-width: 720px) {
3836
+ .modal-free-doc .right-container {
3837
+ width: 65%; } }
3838
+ .modal-free-doc .right-container .info-box {
3839
+ display: flex;
3840
+ flex-direction: column;
3841
+ border: none;
3842
+ padding: 1rem 0 0 1rem; }
3843
+ .modal-free-doc .right-container .info-box__title {
3844
+ padding-bottom: 1rem;
3845
+ border-bottom: 1px solid var(--neutral-neutral-4);
3846
+ font-size: 20px; }
3847
+ .modal-free-doc .right-container .info-box__text {
3848
+ padding: 1rem 0;
3849
+ font-size: 16px; }
3850
+ .modal-free-doc .right-container .info-box__button-box {
3851
+ display: flex;
3852
+ justify-content: flex-start;
3853
+ align-items: flex-end;
3854
+ height: 100%; }
3855
+ .modal-free-doc .right-container .info-box__button-box .button {
3856
+ padding-top: 1rem;
3857
+ width: 100%; }
3858
+ @media (min-width: 720px) {
3859
+ .modal-free-doc .right-container .info-box__button-box .button {
3860
+ width: auto; } }
3861
+ .modal-free-doc .right-container .info-box__button-box button {
3862
+ min-height: 3rem;
3863
+ width: 100%; }
3864
+ .modal-free-doc .right-container .modal-free-close {
3865
+ display: none; }
3866
+ @media (min-width: 720px) {
3867
+ .modal-free-doc .right-container .modal-free-close {
3868
+ display: flex;
3869
+ line-height: 1rem;
3870
+ color: var(--neutral-neutral-1);
3871
+ font-size: 35px; }
3872
+ .modal-free-doc .right-container .modal-free-close:hover, .modal-free-doc .right-container .modal-free-close:focus {
3873
+ color: #000;
3874
+ text-decoration: none;
3875
+ cursor: pointer; } }
3876
+ .modal-free-doc .modal-free-close-mobile {
3877
+ display: flex;
3878
+ position: relative;
3879
+ left: 280px;
3880
+ top: 30px;
3881
+ line-height: 1rem;
3882
+ color: var(--neutral-neutral-1);
3883
+ font-size: 35px; }
3884
+ .modal-free-doc .modal-free-close-mobile:hover, .modal-free-doc .modal-free-close-mobile:focus {
3885
+ color: #000;
3886
+ text-decoration: none;
3887
+ cursor: pointer; }
3888
+ @media (min-width: 720px) {
3889
+ .modal-free-doc .modal-free-close-mobile {
3890
+ display: none; } }
3891
+
3810
3892
  .articles_wrapper {
3811
3893
  display: flex;
3812
3894
  flex-direction: column;
@@ -0,0 +1,5 @@
1
+ import { type FC } from 'react';
2
+ import { type ModalFreeDocProps } from './ModalFreeDoc.types';
3
+ import './ModalFreeDoc.scss';
4
+ declare const ModalFreeDoc: FC<ModalFreeDocProps>;
5
+ export default ModalFreeDoc;
@@ -0,0 +1,4 @@
1
+ export interface ModalFreeDocProps {
2
+ productName?: string;
3
+ closeModal: () => void;
4
+ }
@@ -0,0 +1,2 @@
1
+ export { default as ModalFreeDoc } from './ModalFreeDoc';
2
+ export { type ModalFreeDocProps } from './ModalFreeDoc.types';
@@ -17,3 +17,4 @@ export * from './TextInput';
17
17
  export * from './TooltipMenu';
18
18
  export * from './TrustworthyWebsites';
19
19
  export * from './ExpertCardList';
20
+ export * from './ModalFreeDoc';