File size: 777 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 |
// @flow
import styled from 'styled-components';
import theme from 'shared/theme';
export const Bar = styled.div`
display: flex;
background: ${theme.brand.wash};
align-items: center;
border-bottom: 1px solid ${theme.brand.border};
color: ${theme.brand.default};
font-size: 14px;
font-weight: 400;
padding: 0 8px 0 0;
justify-content: center;
flex: 0 0 48px;
max-height: 48px;
`;
export const Content = styled.div`
display: flex;
justify-content: center;
align-items: center;
line-height: 1.2;
padding: 12px 0;
flex: 1 0 auto;
a {
text-decoration: underline;
font-weight: 600;
}
.icon {
margin-right: 8px;
}
@media (max-width: 768px) {
justify-content: flex-start;
padding-left: 12px;
flex: 1 1 auto;
}
`;
|