2019-11-30 09:06:06 +04:00
|
|
|
import styled from 'styled-components';
|
|
|
|
|
|
|
|
export const SummaryContainer = styled.div``;
|
|
|
|
|
2019-11-30 10:00:44 +04:00
|
|
|
export const UpcomingContainer = styled.div`
|
|
|
|
text-align: center;
|
|
|
|
padding: 40px 0 50px;
|
|
|
|
|
|
|
|
.container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
|
2019-11-30 09:06:06 +04:00
|
|
|
export const Summary = styled.div`
|
|
|
|
text-align: center;
|
|
|
|
padding: 40px 0 50px;
|
|
|
|
min-height: 400px;
|
|
|
|
|
|
|
|
.container {
|
|
|
|
position: relative;
|
|
|
|
}
|
|
|
|
`;
|