diff --git a/src/pages/cueCard/CueCard.tsx b/src/pages/cueCard/CueCard.tsx index 7c98975d..db5b5519 100644 --- a/src/pages/cueCard/CueCard.tsx +++ b/src/pages/cueCard/CueCard.tsx @@ -2,6 +2,7 @@ import { useRef } from 'react'; import Button from 'components/common/atomComponents/Button'; import Text from 'components/common/atomComponents/Text'; +import BottomBtnSection from 'components/common/moleculesComponents/BottomBtnSection'; import Header from 'components/common/moleculesComponents/Header'; import html2canvas from 'html2canvas'; import CueCardTitle from 'pages/cueCard/components/CueCardTitle'; @@ -32,7 +33,7 @@ function CueCard() {
- + - + ); } @@ -62,12 +63,3 @@ const CueCardWrapper = styled.div` width: 100%; `; - -const ButtonSection = styled.section` - display: flex; - position: fixed; - bottom: 1.2rem; - flex-direction: row; - gap: 1.4rem; - justify-content: center; -`;