@sinchsmb/ui-kit
Version:
UI kit for SinchSMB frontend
17 lines (14 loc) • 430 B
text/typescript
import styled from 'styled-components/macro';
import { color, shadow } from '../../../../theme';
export const StyledFooter = styled.footer`
align-items: center;
background-color: ${color('comp/section/footer/background')};
box-shadow: ${shadow('sys/shadow/elevation/8')};
column-gap: 20px;
display: flex;
height: 62px;
justify-content: flex-end;
min-height: 62px;
padding-left: 32px;
padding-right: 32px;
`;