@npm_leadtech/legal-lib-components 5.22.6 → 5.22.8
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.
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { device } from '../../../globalStyles/breakpoints';
|
|
1
2
|
import styled from 'styled-components';
|
|
2
3
|
export const FixedFooterStyled = styled.div `
|
|
3
4
|
.prefooter {
|
|
@@ -591,4 +592,219 @@ export const FixedFooterStyled = styled.div `
|
|
|
591
592
|
display: none;
|
|
592
593
|
}
|
|
593
594
|
}
|
|
595
|
+
/* Diferencias en prefooter */
|
|
596
|
+
.prefooter {
|
|
597
|
+
background-color: var(--primary-main-light-5); /* Color diferente */
|
|
598
|
+
}
|
|
599
|
+
.prefooter--columns p {
|
|
600
|
+
color: var(--neutral-neutral-2); /* Color diferente */
|
|
601
|
+
}
|
|
602
|
+
|
|
603
|
+
/* Adiciones en footer */
|
|
604
|
+
footer {
|
|
605
|
+
/*LEG-5512: A/B*/
|
|
606
|
+
}
|
|
607
|
+
|
|
608
|
+
footer .desktop_view .bottom-text-link {
|
|
609
|
+
text-decoration: underline;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
footer .wide-info-bar.green {
|
|
613
|
+
background-color: var(--neutral-neutral-6);
|
|
614
|
+
color: var(--neutral-neutral-1);
|
|
615
|
+
}
|
|
616
|
+
|
|
617
|
+
footer .footer__wrapper.hideMobile {
|
|
618
|
+
display: none;
|
|
619
|
+
}
|
|
620
|
+
@media (min-width: 720px) {
|
|
621
|
+
footer .footer__wrapper.hideMobile {
|
|
622
|
+
display: flex;
|
|
623
|
+
}
|
|
624
|
+
}
|
|
625
|
+
|
|
626
|
+
footer .footer__logo {
|
|
627
|
+
width: 45%;
|
|
628
|
+
max-width: 45%;
|
|
629
|
+
display: flex;
|
|
630
|
+
}
|
|
631
|
+
@media (min-width: 720px) {
|
|
632
|
+
footer .footer__logo {
|
|
633
|
+
width: 100%;
|
|
634
|
+
max-width: 100%;
|
|
635
|
+
margin-bottom: 2rem;
|
|
636
|
+
align-items: center;
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
footer .footer__products .products__list,
|
|
641
|
+
footer .footer__popular-documents .products__list,
|
|
642
|
+
footer .footer__company .products__list {
|
|
643
|
+
top: 2.2rem;
|
|
644
|
+
right: 0;
|
|
645
|
+
}
|
|
646
|
+
|
|
647
|
+
footer .footer__products .products__list .icon-arrow,
|
|
648
|
+
footer .footer__popular-documents .products__list .icon-arrow,
|
|
649
|
+
footer .footer__company .products__list .icon-arrow {
|
|
650
|
+
width: 0.625rem;
|
|
651
|
+
height: 0.813rem;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
footer .footer__products .products__list .icon-arrow::before,
|
|
655
|
+
footer .footer__popular-documents .products__list .icon-arrow::before,
|
|
656
|
+
footer .footer__company .products__list .icon-arrow::before {
|
|
657
|
+
top: 0;
|
|
658
|
+
transform: rotate(-45deg);
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
footer .footer__products .products__list .icon-arrow::after,
|
|
662
|
+
footer .footer__popular-documents .products__list .icon-arrow::after,
|
|
663
|
+
footer .footer__company .products__list .icon-arrow::after {
|
|
664
|
+
bottom: 0;
|
|
665
|
+
transform: rotate(45deg);
|
|
666
|
+
}
|
|
667
|
+
|
|
668
|
+
footer .footer__products .products__list .icon-arrow::before,
|
|
669
|
+
footer .footer__products .products__list .icon-arrow::after,
|
|
670
|
+
footer .footer__popular-documents .products__list .icon-arrow::before,
|
|
671
|
+
footer .footer__popular-documents .products__list .icon-arrow::after,
|
|
672
|
+
footer .footer__company .products__list .icon-arrow::before,
|
|
673
|
+
footer .footer__company .products__list .icon-arrow::after {
|
|
674
|
+
height: 64%;
|
|
675
|
+
left: 50%;
|
|
676
|
+
content: '';
|
|
677
|
+
position: absolute;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
footer .footer__products .products__list::marker,
|
|
681
|
+
footer .footer__popular-documents .products__list::marker,
|
|
682
|
+
footer .footer__company .products__list::marker {
|
|
683
|
+
content: none;
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
footer .footer__products .products__list:hover .icon-arrow:before,
|
|
687
|
+
footer .footer__products .products__list:hover .icon-arrow:after,
|
|
688
|
+
footer .footer__popular-documents .products__list:hover .icon-arrow:before,
|
|
689
|
+
footer .footer__popular-documents .products__list:hover .icon-arrow:after,
|
|
690
|
+
footer .footer__company .products__list:hover .icon-arrow:before,
|
|
691
|
+
footer .footer__company .products__list:hover .icon-arrow:after {
|
|
692
|
+
background-color: var(--others-white);
|
|
693
|
+
}
|
|
694
|
+
|
|
695
|
+
footer .separation-line {
|
|
696
|
+
width: 100%;
|
|
697
|
+
height: 1px;
|
|
698
|
+
background-color: var(--primary-main);
|
|
699
|
+
margin-bottom: 0.5rem;
|
|
700
|
+
}
|
|
701
|
+
|
|
702
|
+
footer .footer__mobile-contact {
|
|
703
|
+
display: block;
|
|
704
|
+
width: 100%;
|
|
705
|
+
}
|
|
706
|
+
@media (min-width: 720px) {
|
|
707
|
+
footer .footer__mobile-contact {
|
|
708
|
+
display: none;
|
|
709
|
+
}
|
|
710
|
+
}
|
|
711
|
+
|
|
712
|
+
footer .footer__findus__mobile {
|
|
713
|
+
display: none;
|
|
714
|
+
}
|
|
715
|
+
@media (max-width: 720px) {
|
|
716
|
+
footer .footer__findus__mobile {
|
|
717
|
+
display: block;
|
|
718
|
+
}
|
|
719
|
+
footer .footer__findus__mobile ul {
|
|
720
|
+
display: flex;
|
|
721
|
+
}
|
|
722
|
+
footer .footer__findus__mobile ul li {
|
|
723
|
+
width: inherit;
|
|
724
|
+
margin-right: 1rem;
|
|
725
|
+
}
|
|
726
|
+
}
|
|
727
|
+
|
|
728
|
+
footer .find-us-container .contact-box-container {
|
|
729
|
+
display: none;
|
|
730
|
+
}
|
|
731
|
+
@media (min-width: 720px) {
|
|
732
|
+
footer .find-us-container .contact-box-container {
|
|
733
|
+
display: block;
|
|
734
|
+
}
|
|
735
|
+
}
|
|
736
|
+
footer .find-us-container .contact-box-container .contact-box__phone {
|
|
737
|
+
color: var(--others-white);
|
|
738
|
+
}
|
|
739
|
+
footer .find-us-container .contact-box-container .contact-box__schedule {
|
|
740
|
+
color: var(--neutral-neutral-3);
|
|
741
|
+
}
|
|
742
|
+
.contact-bar-wrapper {
|
|
743
|
+
display: flex;
|
|
744
|
+
align-items: center;
|
|
745
|
+
}
|
|
746
|
+
.contact-bar-wrapper.hidden {
|
|
747
|
+
display: none;
|
|
748
|
+
}
|
|
749
|
+
.contact-bar-wrapper__text {
|
|
750
|
+
width: -moz-max-content;
|
|
751
|
+
width: max-content;
|
|
752
|
+
margin: 0.25rem;
|
|
753
|
+
}
|
|
754
|
+
@media (min-width: 720px) {
|
|
755
|
+
.contact-bar-wrapper__text {
|
|
756
|
+
margin: 1rem 0.5rem;
|
|
757
|
+
}
|
|
758
|
+
}
|
|
759
|
+
.contact-bar-wrapper__text .phone {
|
|
760
|
+
color: var(--neutral-neutral-1);
|
|
761
|
+
}
|
|
762
|
+
.contact-bar-wrapper__text .is-mobile {
|
|
763
|
+
display: inline;
|
|
764
|
+
}
|
|
765
|
+
@media (min-width: 720px) {
|
|
766
|
+
.contact-bar-wrapper__text .is-mobile {
|
|
767
|
+
display: none;
|
|
768
|
+
}
|
|
769
|
+
}
|
|
770
|
+
.contact-bar-wrapper .is-mobile {
|
|
771
|
+
display: flex;
|
|
772
|
+
display: inline-table;
|
|
773
|
+
}
|
|
774
|
+
@media (min-width: 720px) {
|
|
775
|
+
.contact-bar-wrapper .is-mobile {
|
|
776
|
+
display: none;
|
|
777
|
+
}
|
|
778
|
+
}
|
|
779
|
+
.contact-bar-wrapper .no-mobile {
|
|
780
|
+
display: none;
|
|
781
|
+
}
|
|
782
|
+
@media (min-width: 720px) {
|
|
783
|
+
.contact-bar-wrapper .no-mobile {
|
|
784
|
+
display: inline;
|
|
785
|
+
white-space: normal;
|
|
786
|
+
word-wrap: break-word;
|
|
787
|
+
}
|
|
788
|
+
}
|
|
789
|
+
.contact-bar-wrapper .no-mobile .phone {
|
|
790
|
+
color: var(--primary-main-dark-1);
|
|
791
|
+
}
|
|
792
|
+
.wide-info-bar {
|
|
793
|
+
&__wrapper {
|
|
794
|
+
display: flex;
|
|
795
|
+
flex-flow: column nowrap;
|
|
796
|
+
justify-content: space-between;
|
|
797
|
+
padding: 1rem 2rem;
|
|
798
|
+
|
|
799
|
+
@media ${device['landscape-tablets']} {
|
|
800
|
+
flex-flow: row;
|
|
801
|
+
font-size: 0.9rem;
|
|
802
|
+
padding: 0;
|
|
803
|
+
}
|
|
804
|
+
|
|
805
|
+
@media ${device.desktop} {
|
|
806
|
+
padding: 0;
|
|
807
|
+
}
|
|
808
|
+
}
|
|
809
|
+
}
|
|
594
810
|
`;
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { device } from '../../../globalStyles/breakpoints'
|
|
1
2
|
import styled from 'styled-components'
|
|
2
3
|
|
|
3
4
|
export const FixedFooterStyled = styled.div`
|
|
@@ -592,4 +593,219 @@ export const FixedFooterStyled = styled.div`
|
|
|
592
593
|
display: none;
|
|
593
594
|
}
|
|
594
595
|
}
|
|
596
|
+
/* Diferencias en prefooter */
|
|
597
|
+
.prefooter {
|
|
598
|
+
background-color: var(--primary-main-light-5); /* Color diferente */
|
|
599
|
+
}
|
|
600
|
+
.prefooter--columns p {
|
|
601
|
+
color: var(--neutral-neutral-2); /* Color diferente */
|
|
602
|
+
}
|
|
603
|
+
|
|
604
|
+
/* Adiciones en footer */
|
|
605
|
+
footer {
|
|
606
|
+
/*LEG-5512: A/B*/
|
|
607
|
+
}
|
|
608
|
+
|
|
609
|
+
footer .desktop_view .bottom-text-link {
|
|
610
|
+
text-decoration: underline;
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
footer .wide-info-bar.green {
|
|
614
|
+
background-color: var(--neutral-neutral-6);
|
|
615
|
+
color: var(--neutral-neutral-1);
|
|
616
|
+
}
|
|
617
|
+
|
|
618
|
+
footer .footer__wrapper.hideMobile {
|
|
619
|
+
display: none;
|
|
620
|
+
}
|
|
621
|
+
@media (min-width: 720px) {
|
|
622
|
+
footer .footer__wrapper.hideMobile {
|
|
623
|
+
display: flex;
|
|
624
|
+
}
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
footer .footer__logo {
|
|
628
|
+
width: 45%;
|
|
629
|
+
max-width: 45%;
|
|
630
|
+
display: flex;
|
|
631
|
+
}
|
|
632
|
+
@media (min-width: 720px) {
|
|
633
|
+
footer .footer__logo {
|
|
634
|
+
width: 100%;
|
|
635
|
+
max-width: 100%;
|
|
636
|
+
margin-bottom: 2rem;
|
|
637
|
+
align-items: center;
|
|
638
|
+
}
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
footer .footer__products .products__list,
|
|
642
|
+
footer .footer__popular-documents .products__list,
|
|
643
|
+
footer .footer__company .products__list {
|
|
644
|
+
top: 2.2rem;
|
|
645
|
+
right: 0;
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
footer .footer__products .products__list .icon-arrow,
|
|
649
|
+
footer .footer__popular-documents .products__list .icon-arrow,
|
|
650
|
+
footer .footer__company .products__list .icon-arrow {
|
|
651
|
+
width: 0.625rem;
|
|
652
|
+
height: 0.813rem;
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
footer .footer__products .products__list .icon-arrow::before,
|
|
656
|
+
footer .footer__popular-documents .products__list .icon-arrow::before,
|
|
657
|
+
footer .footer__company .products__list .icon-arrow::before {
|
|
658
|
+
top: 0;
|
|
659
|
+
transform: rotate(-45deg);
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
footer .footer__products .products__list .icon-arrow::after,
|
|
663
|
+
footer .footer__popular-documents .products__list .icon-arrow::after,
|
|
664
|
+
footer .footer__company .products__list .icon-arrow::after {
|
|
665
|
+
bottom: 0;
|
|
666
|
+
transform: rotate(45deg);
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
footer .footer__products .products__list .icon-arrow::before,
|
|
670
|
+
footer .footer__products .products__list .icon-arrow::after,
|
|
671
|
+
footer .footer__popular-documents .products__list .icon-arrow::before,
|
|
672
|
+
footer .footer__popular-documents .products__list .icon-arrow::after,
|
|
673
|
+
footer .footer__company .products__list .icon-arrow::before,
|
|
674
|
+
footer .footer__company .products__list .icon-arrow::after {
|
|
675
|
+
height: 64%;
|
|
676
|
+
left: 50%;
|
|
677
|
+
content: '';
|
|
678
|
+
position: absolute;
|
|
679
|
+
}
|
|
680
|
+
|
|
681
|
+
footer .footer__products .products__list::marker,
|
|
682
|
+
footer .footer__popular-documents .products__list::marker,
|
|
683
|
+
footer .footer__company .products__list::marker {
|
|
684
|
+
content: none;
|
|
685
|
+
}
|
|
686
|
+
|
|
687
|
+
footer .footer__products .products__list:hover .icon-arrow:before,
|
|
688
|
+
footer .footer__products .products__list:hover .icon-arrow:after,
|
|
689
|
+
footer .footer__popular-documents .products__list:hover .icon-arrow:before,
|
|
690
|
+
footer .footer__popular-documents .products__list:hover .icon-arrow:after,
|
|
691
|
+
footer .footer__company .products__list:hover .icon-arrow:before,
|
|
692
|
+
footer .footer__company .products__list:hover .icon-arrow:after {
|
|
693
|
+
background-color: var(--others-white);
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
footer .separation-line {
|
|
697
|
+
width: 100%;
|
|
698
|
+
height: 1px;
|
|
699
|
+
background-color: var(--primary-main);
|
|
700
|
+
margin-bottom: 0.5rem;
|
|
701
|
+
}
|
|
702
|
+
|
|
703
|
+
footer .footer__mobile-contact {
|
|
704
|
+
display: block;
|
|
705
|
+
width: 100%;
|
|
706
|
+
}
|
|
707
|
+
@media (min-width: 720px) {
|
|
708
|
+
footer .footer__mobile-contact {
|
|
709
|
+
display: none;
|
|
710
|
+
}
|
|
711
|
+
}
|
|
712
|
+
|
|
713
|
+
footer .footer__findus__mobile {
|
|
714
|
+
display: none;
|
|
715
|
+
}
|
|
716
|
+
@media (max-width: 720px) {
|
|
717
|
+
footer .footer__findus__mobile {
|
|
718
|
+
display: block;
|
|
719
|
+
}
|
|
720
|
+
footer .footer__findus__mobile ul {
|
|
721
|
+
display: flex;
|
|
722
|
+
}
|
|
723
|
+
footer .footer__findus__mobile ul li {
|
|
724
|
+
width: inherit;
|
|
725
|
+
margin-right: 1rem;
|
|
726
|
+
}
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
footer .find-us-container .contact-box-container {
|
|
730
|
+
display: none;
|
|
731
|
+
}
|
|
732
|
+
@media (min-width: 720px) {
|
|
733
|
+
footer .find-us-container .contact-box-container {
|
|
734
|
+
display: block;
|
|
735
|
+
}
|
|
736
|
+
}
|
|
737
|
+
footer .find-us-container .contact-box-container .contact-box__phone {
|
|
738
|
+
color: var(--others-white);
|
|
739
|
+
}
|
|
740
|
+
footer .find-us-container .contact-box-container .contact-box__schedule {
|
|
741
|
+
color: var(--neutral-neutral-3);
|
|
742
|
+
}
|
|
743
|
+
.contact-bar-wrapper {
|
|
744
|
+
display: flex;
|
|
745
|
+
align-items: center;
|
|
746
|
+
}
|
|
747
|
+
.contact-bar-wrapper.hidden {
|
|
748
|
+
display: none;
|
|
749
|
+
}
|
|
750
|
+
.contact-bar-wrapper__text {
|
|
751
|
+
width: -moz-max-content;
|
|
752
|
+
width: max-content;
|
|
753
|
+
margin: 0.25rem;
|
|
754
|
+
}
|
|
755
|
+
@media (min-width: 720px) {
|
|
756
|
+
.contact-bar-wrapper__text {
|
|
757
|
+
margin: 1rem 0.5rem;
|
|
758
|
+
}
|
|
759
|
+
}
|
|
760
|
+
.contact-bar-wrapper__text .phone {
|
|
761
|
+
color: var(--neutral-neutral-1);
|
|
762
|
+
}
|
|
763
|
+
.contact-bar-wrapper__text .is-mobile {
|
|
764
|
+
display: inline;
|
|
765
|
+
}
|
|
766
|
+
@media (min-width: 720px) {
|
|
767
|
+
.contact-bar-wrapper__text .is-mobile {
|
|
768
|
+
display: none;
|
|
769
|
+
}
|
|
770
|
+
}
|
|
771
|
+
.contact-bar-wrapper .is-mobile {
|
|
772
|
+
display: flex;
|
|
773
|
+
display: inline-table;
|
|
774
|
+
}
|
|
775
|
+
@media (min-width: 720px) {
|
|
776
|
+
.contact-bar-wrapper .is-mobile {
|
|
777
|
+
display: none;
|
|
778
|
+
}
|
|
779
|
+
}
|
|
780
|
+
.contact-bar-wrapper .no-mobile {
|
|
781
|
+
display: none;
|
|
782
|
+
}
|
|
783
|
+
@media (min-width: 720px) {
|
|
784
|
+
.contact-bar-wrapper .no-mobile {
|
|
785
|
+
display: inline;
|
|
786
|
+
white-space: normal;
|
|
787
|
+
word-wrap: break-word;
|
|
788
|
+
}
|
|
789
|
+
}
|
|
790
|
+
.contact-bar-wrapper .no-mobile .phone {
|
|
791
|
+
color: var(--primary-main-dark-1);
|
|
792
|
+
}
|
|
793
|
+
.wide-info-bar {
|
|
794
|
+
&__wrapper {
|
|
795
|
+
display: flex;
|
|
796
|
+
flex-flow: column nowrap;
|
|
797
|
+
justify-content: space-between;
|
|
798
|
+
padding: 1rem 2rem;
|
|
799
|
+
|
|
800
|
+
@media ${device['landscape-tablets']} {
|
|
801
|
+
flex-flow: row;
|
|
802
|
+
font-size: 0.9rem;
|
|
803
|
+
padding: 0;
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
@media ${device.desktop} {
|
|
807
|
+
padding: 0;
|
|
808
|
+
}
|
|
809
|
+
}
|
|
810
|
+
}
|
|
595
811
|
`
|