14 lines
239 B
JavaScript
14 lines
239 B
JavaScript
![]() |
import styled from 'styled-components';
|
||
|
|
||
|
export const SummaryContainer = styled.div``;
|
||
|
|
||
|
export const Summary = styled.div`
|
||
|
text-align: center;
|
||
|
padding: 40px 0 50px;
|
||
|
min-height: 400px;
|
||
|
|
||
|
.container {
|
||
|
position: relative;
|
||
|
}
|
||
|
`;
|