| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117 |
- import styled from 'styled-components';
- export const Container = styled.div`
- footer {
- margin-top: 30px;
- display: flex;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- @media (max-width: 768px) {
- flex-direction: column;
- .checkout-buttons {
- display: flex;
- flex-direction: column-reverse;
- width: 100%;
- button {
- width: 100%;
- margin-top: 16px;
- margin-left: 0;
- }
- }
- }
- button {
- margin-left: 16px;
- }
- }
- `;
- export const Total = styled.div`
- display: flex;
- align-items: baseline;
- span {
- color: #333;
- font-weight: bold;
- }
- strong {
- color: #333;
- font-size: 28px;
- margin-left: 5px;
- }
- @media (max-width: 768px) {
- min-width: 100%;
- justify-content: space-between;
- }
- `;
- export const SuccessContent = styled.div`
- display: flex;
- flex-direction: column;
- justify-content: center;
- align-items: center;
- > h2 {
- text-align: center;
- }
- > svg {
- margin-top: 16px;
- }
- > span {
- margin-top: 24px;
- text-align: center;
- }
- > p,
- strong {
- margin-top: 8px;
- font-size: 9px;
- color: #999;
- }
- .copy-button {
- font-size: 14px;
- cursor: pointer;
- text-align: center;
- user-select: none;
- min-height: 56px;
- display: inline-flex;
- -webkit-box-pack: center;
- justify-content: center;
- -webkit-box-align: center;
- align-items: center;
- background-color: #f9f9f9;
- color: #000;
- -webkit-appearance: none !important;
- outline: none;
- margin-top: 16px;
- width: 256px;
- font-weight: 600;
- text-transform: uppercase;
- border: none;
- > span {
- margin-right: 8px;
- }
- }
- `;
- export const CheckoutWrapper = styled.div`
- width: 100%;
- margin: 0 auto 0;
- max-width: 1110px;
- display: flex;
- flex-direction: column;
- -webkit-box-align: center;
- align-items: center;
- padding: 50px 95px;
- background: #fff;
- @media (max-width: 768px) {
- padding: 16px 24px;
- `;
|