Skip to content

Commit

Permalink
fix: Consertar responsividade da pagina de perfil (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
ytallobruno authored May 28, 2024
2 parents 4225f47 + f06c2da commit 265c07d
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 5 deletions.
13 changes: 10 additions & 3 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,14 +123,21 @@ O site em HTML/CSS/JS é um projeto estático. É necessário implantá-lo em um

- Objeto inicial do usuário para conter os cartões de crédito e armazenamento do e-mail do usuário separadamente para utilização, na lógica de cadastro

### [0.1.15] - 14/05/2024
### [0.1.15] - 23/05/2024

#### Adicionado

- Campo de pesquisa funcional na página de cardápio

### [0.1.16] - 14/05/2024
### [0.1.16] - 24/05/2024

#### Adicionado

- Foi adicionado a verificação de login na tela de Login.
- Foi adicionado a verificação de login na tela de Login.

### [0.1.17] - 28/05/2024

#### Alterado

- Corrigida responsividade da página de perfil.
- Reorganização do histórico de versões.
11 changes: 10 additions & 1 deletion src/assets/css/perfilStyle.css
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,15 @@ footer > .container > .nav > .nav-item > .nav-link:hover {
border-radius: 5px;
}

.file-upload .square img {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
object-fit: cover;
}

.btn-success-soft {
color: #28a745;
background-color: rgba(40, 167, 69, 0.1);
Expand All @@ -87,4 +96,4 @@ footer > .container > .nav > .nav-item > .nav-link:hover {
.profile-photo {
width: 100%;
min-width: 80%;
}
}
2 changes: 1 addition & 1 deletion src/assets/js/perfilScript.js
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ function deleteCreditCard(cardNumber) {
}

function createDeleteButtonElement(creditCard) {
var button = createElement("button", "btn btn-sm btn-danger ms-auto");
var button = createElement("button", "btn btn-sm btn-outline-danger");
button.type = "button";
button.id = `delete-credit-card${creditCard.number}`;
button.innerHTML = '<i class="bi bi-x-lg"></i>';
Expand Down

0 comments on commit 265c07d

Please sign in to comment.