Skip to content

Commit

Permalink
Merge pull request #183 from ASAP-as-soon-as-possible/fix/onboardingI…
Browse files Browse the repository at this point in the history
…mageSize/#182

[Feat/#182] 온보딩 이미지 크기 수정 및 여백 삭제
  • Loading branch information
simeunseo authored Oct 2, 2023
2 parents 51fe4d1 + aece0dc commit ef83411
Showing 1 changed file with 8 additions and 9 deletions.
17 changes: 8 additions & 9 deletions src/pages/onBoarding/OnBoarding.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
import 'swiper/css';
import 'swiper/css/navigation';
import 'swiper/css/pagination';

import CardPng from 'assets/images/card.png';
import InsertPng from 'assets/images/insert.png';
import MakePng from 'assets/images/make.png';
Expand All @@ -7,12 +11,9 @@ import Text from 'components/atomComponents/Text';
import Header from 'components/moleculesComponents/Header';
import { Link } from 'react-router-dom';
import styled from 'styled-components/macro';
import { Navigation, Pagination, Autoplay } from 'swiper/modules';
import { Autoplay, Navigation, Pagination } from 'swiper/modules';
import { Swiper, SwiperSlide } from 'swiper/react';

import 'swiper/css';
import 'swiper/css/navigation';
import 'swiper/css/pagination';
import Explain from './components/Explain';

const slides = [
Expand Down Expand Up @@ -108,14 +109,12 @@ const StyledSwiperSlide = styled(SwiperSlide)`

const SvgContainer = styled.section`
img {
width: 25rem;
height: 25rem;
width: 33rem;
height: 33rem;
}
`;

const ExplainContainer = styled.section`
margin: 5rem 0;
`;
const ExplainContainer = styled.section``;

const ButtonSection = styled.section`
position: fixed;
Expand Down

0 comments on commit ef83411

Please sign in to comment.