Skip to content

Commit

Permalink
update in 'updateUser() '
Browse files Browse the repository at this point in the history
  • Loading branch information
Elto Borges authored and Elto Borges committed Aug 21, 2024
1 parent 5020d79 commit 5bff83d
Show file tree
Hide file tree
Showing 3 changed files with 197 additions and 205 deletions.
2 changes: 1 addition & 1 deletion ask.html
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ <h2>Qual é a sua experiência em academia?</h2>
<div class="ask-form-step">
<h2>Envie uma foto sua para o perfil</h2>
<input type="file" id="ask-profile-image" accept="image/*" placeholder="Envie uma foto de perfil">
<button onclick="updateUser()" class="uptadebutton">Salvar</button>
<button onclick="updateUser()" class="updatebutton">Salvar</button>
</div>

<div class="ask-back-step">
Expand Down
20 changes: 18 additions & 2 deletions src/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -659,7 +659,7 @@ button[type="button"] {
transform: translateY(0);
}

.ask-continue-button, .updatebutton {
.ask-continue-button {
width: 100%;
padding: 12px;
background-color: #ff4a53;
Expand All @@ -672,7 +672,23 @@ button[type="button"] {
transition: background-color 0.3s ease;
}

.ask-continue-button:hover, .updatebutton:hover {
.ask-continue-button:hover {
background-color: #ff2a33;
}
.updatebutton{
width: 100%;
padding: 12px;
background-color: #ff4a53;
color: white;
border: none;
border-radius: 20px;
font-size: 16px;
cursor: pointer;
margin-top: 20px;
transition: background-color 0.3s ease;

}
.updatebutton:hover {
background-color: #ff2a33;
}

Expand Down
Loading

0 comments on commit 5bff83d

Please sign in to comment.