Skip to content

Commit

Permalink
refactor: fazendo as alterações solicitadas no petcard, incluindo imp…
Browse files Browse the repository at this point in the history
…ortação de variáveis, refactor para o src da imagem ser incluido de forma automatizada e organização do sccs

fix devhatt#20
  • Loading branch information
RafaelLimaC committed Feb 8, 2024
1 parent 3ee6aa3 commit e3cce20
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
10 changes: 5 additions & 5 deletions src/components/PetCard/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
display: flex;
flex-direction: column;

border: 1px solid #eceff2;
border: 1px solid rgb(236, 239, 242);
box-sizing: border-box;

background-color: #fff;
box-shadow: 0 0 0.5rem 0 #0c1a4b0d;
background-color: rgb(255, 255, 255);
box-shadow: 0 0 0.5rem 0 rgba(12, 26, 75, 0.050980392156862744);

border-radius: 1.8rem;

Expand All @@ -30,9 +30,9 @@
}

&--active {
color: #1b85f3;
color: rgb(27, 133, 243);

border: 2px solid #1b85f3;
border: 2px solid rgb(27, 133, 243);
}

&:hover {
Expand Down
3 changes: 1 addition & 2 deletions src/components/TextInput/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@
&.outlined {
padding: 0.5rem 0.35rem;

border-color: transparent;
border-bottom: 1px solid #b8b8b8;
border-color: transparent;

outline: none;

Expand Down Expand Up @@ -87,5 +87,4 @@
}
}
}

}
2 changes: 2 additions & 0 deletions src/styles/var.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
$petCardAccentColor: #1b85f3;
$petCardFf: 'Montserrat', sans-serif;

0 comments on commit e3cce20

Please sign in to comment.