@npm_leadtech/legal-lib-components 5.22.7 → 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 {
|
|
@@ -788,4 +789,22 @@ export const FixedFooterStyled = styled.div `
|
|
|
788
789
|
.contact-bar-wrapper .no-mobile .phone {
|
|
789
790
|
color: var(--primary-main-dark-1);
|
|
790
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
|
+
}
|
|
791
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`
|
|
@@ -789,4 +790,22 @@ export const FixedFooterStyled = styled.div`
|
|
|
789
790
|
.contact-bar-wrapper .no-mobile .phone {
|
|
790
791
|
color: var(--primary-main-dark-1);
|
|
791
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
|
+
}
|
|
792
811
|
`
|