Skip to content

Commit

Permalink
fix: cards and margin in petvet
Browse files Browse the repository at this point in the history
  • Loading branch information
juliaam committed Jul 29, 2024
1 parent 5ebcda3 commit 168ee86
Show file tree
Hide file tree
Showing 2 changed files with 63 additions and 1 deletion.
62 changes: 61 additions & 1 deletion src/components/AddPet/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,69 @@ import PetRegister from '../../layouts/app/pages/PetRegister';

import arrowLeft from './assets/arrow-left.svg';

import afghanHound from '../../stories/assets/petRegisterPage/afghanHound.svg';
import akita from '../../stories/assets/petRegisterPage/akita.svg';
import beagle from '../../stories/assets/petRegisterPage/beagle.svg';
import bichonFrise from '../../stories/assets/petRegisterPage/bichonFrise.svg';
import borderCollie from '../../stories/assets/petRegisterPage/borderCollie.svg';
import boxer from '../../stories/assets/petRegisterPage/boxer.svg';
import chowChow from '../../stories/assets/petRegisterPage/chowChow.svg';
import mixedBreed from '../../stories/assets/petRegisterPage/mixedBreed.svg';

import './index.scss';

const cards = [];
const cards = [
{
title: 'Akita',
imgSrc: akita,
imgAlt: 'akita',
},
{
title: 'Boxer',
imgSrc: boxer,
imgAlt: 'boxer',
},
{
title: 'Akita',
imgSrc: akita,
imgAlt: 'akita',
},
{
title: 'Boxer',
imgSrc: boxer,
imgAlt: 'boxer',
},
{
title: 'Beagle',
imgSrc: beagle,
imgAlt: 'beagle',
},
{
title: 'Afghan Hound',
imgSrc: afghanHound,
imgAlt: 'afghan hound',
},
{
title: 'Bichon Frise',
imgSrc: bichonFrise,
imgAlt: 'bichon frise',
},
{
title: 'Chow Chow',
imgSrc: chowChow,
imgAlt: 'chow chow',
},
{
title: 'Border Collie',
imgSrc: borderCollie,
imgAlt: 'border collie',
},
{
title: 'Mixed Breed',
imgSrc: mixedBreed,
imgAlt: 'mixed breed',
},
];

const steps = new Map();
steps.set(1, 'Petraça');
Expand Down
2 changes: 2 additions & 0 deletions src/layouts/app/pages/PetVet/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,8 @@
display: flex;

justify-content: center;

margin-top: auto;
}

&__button {
Expand Down

0 comments on commit 168ee86

Please sign in to comment.