Skip to content

Commit

Permalink
chore: change and remove scss unecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasGz committed Sep 6, 2024
1 parent 49fe58f commit c8f9271
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 16 deletions.
2 changes: 1 addition & 1 deletion src/layouts/app/pages/PetSize/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const html = `
<div class="pet-size-page__description">
<h1 class="pet-size-page__title">Qual é o tamanho do seu animal de estimação?</h1>
<p class="pet-size-page__hint">Ajuste de acordo com a realidade</p>
<label class="pet-size-page__hint">Ajuste de acordo com a realidade</label>
</div>
<div class="pet-size-page__size-selector" data-select="size-selector"></div>
Expand Down
16 changes: 4 additions & 12 deletions src/layouts/app/pages/PetSize/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,6 @@
grid-template-rows: 1fr auto;

&__content {
width: 100%;
height: 100%;

display: flex;
flex-direction: column;
gap: 4rem;
Expand All @@ -23,13 +20,11 @@
text-align: center;
}

&__image-container {
width: max-content;

display: inline-block;
}

&__description {
display: flex;
flex-direction: column;
gap: 0.1rem;

font-family: fonts.$primaryFont;
}

Expand Down Expand Up @@ -59,8 +54,6 @@

justify-content: center;

margin-top: auto;

padding: 4rem 0;

box-shadow: 0 0 0.8rem 0 rgba(73, 77, 90, 0.12);
Expand All @@ -78,7 +71,6 @@
.pet-size-page {
&__button-container {
box-shadow: none;
border-radius: none;
}
}
}
3 changes: 0 additions & 3 deletions src/stories/PetSizePage.stories.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ export default {
render: () => {
const petSizePage = new PetSize();
const $container = document.createElement('div');
$container.style.display = 'flex';
$container.style.height = '100vh';
$container.style.justifyContent = 'center';
petSizePage.mount($container);

return $container;
Expand Down

0 comments on commit c8f9271

Please sign in to comment.