You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
480 B
TypeScript
13 lines
480 B
TypeScript
import styled from 'styled-components';
|
|
import { Flex } from '../basic/Flex';
|
|
|
|
/** We use this in the modals only to bypass the padding on the body so the buttons take up the full space width of the modal window
|
|
* See .session-modal__body for padding values
|
|
*/
|
|
export const ModalConfirmButtonContainer = styled(Flex)`
|
|
margin-top: 0px;
|
|
margin-right: calc(var(--margins-lg) * -1);
|
|
margin-bottom: calc(var(--margins-lg) * -1);
|
|
margin-left: calc(var(--margins-lg) * -1);
|
|
`;
|