Repository URL to install this package:
|
Version:
0.9.6 ▾
|
import { styled } from 'view-container'
import { Copyright } from 'features/Copyright'
import { Label } from 'atoms/Text'
import { MultipleLinkList } from 'presets/MultipleLinkList'
import { StyledLink } from 'presets/SectionLinkList'
import { SectionListHeader } from 'presets/SectionList'
import { SocialIconList, IconLink } from 'molecules/SocialIconList'
import { ItemPanel } from 'molecules/List/styled'
import { Footer as FooterPlaceholder } from 'abstractions/Footer'
const StyledSocialIconList = styled.withComponent(SocialIconList) `
padding: 0;
${IconLink} {
width: 20px;
height: 20px;
padding: 0;
margin-right: rem(24);
&:last-child {
margin-right: 0;
}
}
`
const StyledCopyRight = styled.withComponent(Copyright) `
font-size: 14px;
@media (max-width: 768px) {
font-size: 12px;
display: inline-flex;
flex: none;
}
`
const StyledLabel = styled.withComponent(Label) `
font-size: 14px;
color: #ffffff;
display: flex;
justify-content: center;
@media (max-width: 767px) {
margin-right: 0;
}
`
const StyledMultipleLinkList = styled.withComponent(MultipleLinkList) `
color: #ffffff;
width: 100%;
${ItemPanel} {
padding: 0;
padding-bottom: rem(8);
&:last-child {
padding-bottom: 0;
}
}
${StyledLink} {
color: inherit;
text-decoration: none;
font-size: 14px;
}
${SectionListHeader} {
font-size: 16px;
font-weight: 500;
}
`
const StyledFooterPlaceholder = styled.withComponent(FooterPlaceholder) `
background-color: #2c2c2c;
`
export {
StyledLabel,
StyledCopyRight,
StyledMultipleLinkList,
StyledSocialIconList,
StyledFooterPlaceholder,
}