File size: 412 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 |
// @flow
// $FlowFixMe
import styled from 'styled-components';
import { FlexRow } from '../../globals';
export const Actions = styled(FlexRow)`
margin-top: 24px;
padding: 0 24px 24px;
justify-content: flex-end;
button + button {
margin-left: 8px;
}
`;
export const Message = styled.div`
line-height: 1.4;
margin: 8px 24px;
p {
margin-top: 8px;
}
b {
font-weight: 700;
}
`;
|