Skip to content

Commit

Permalink
💡(#152) Arrumando font-family e font-weight
Browse files Browse the repository at this point in the history
Co-authored-by: Otavio Henrique <[email protected]>
  • Loading branch information
vitordiniz25 committed Oct 21, 2023
1 parent 0549744 commit 17cba2f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 5 deletions.
3 changes: 3 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Jost:wght@100;300;400&display=swap" rel="stylesheet">
<!--
Notice the use of %PUBLIC_URL% in the tags above.
It will be replaced with the URL of the `public` folder during the build.
Expand Down
12 changes: 7 additions & 5 deletions src/style/pages/changePassword.css
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

.form-title {
font-style:bold;
font-family:Jost;
font-family: 'Jost', sans-serif;
font-size: 48px;
height: 70px;
width: 400px;
Expand Down Expand Up @@ -90,9 +90,11 @@
}

.button {

background-color: #007bff;
color: #003366;
background: #036;
font-family: 'Jost', sans-serif;
font-weight: bold;
font-size: 18px;
color: white;
border: none;
cursor: pointer;
justify-self: center;
Expand All @@ -118,7 +120,7 @@ input {


.input-field::placeholder {
font-family:Jost;
font-family: 'Jost', sans-serif;
font-size: 16px; /* Tamanho da fonte desejado */
color: #6C6C6C; /* Cor do texto do placeholder, se desejar */
/* Outros estilos desejados */
Expand Down

0 comments on commit 17cba2f

Please sign in to comment.