Skip to content

Commit b574985

Browse files
authored
Merge pull request #82 from KevinDik/dev
fix: Corrigindo o bug do login
2 parents c37d07f + b356497 commit b574985

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

assets/css/style.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
}
229229
}
230230

231-
@media only screen and (max-width: 400px){
231+
@media only screen and (max-width: 364px){
232232

233233
.menu{
234234
display: none;
@@ -258,7 +258,7 @@
258258
}
259259

260260
#categorias .col img {
261-
width: 40px;
261+
width: 50px;
262262
}
263263

264264
#combos .content .pictures,

assets/js/login.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ addEventListener('submit', (e) => {
44
let senha = document.querySelector("#senha").value;
55
if(login == "[email protected]" && senha == "digital123") {
66
alert("Conectado com o sistema");
7-
window.location.href = "http://127.0.0.1:5500/cad-produtos.html";
7+
window.location.href = "https://kevindik.github.io/digital_burger/cad-produtos";
88
}
99
});
1010

0 commit comments

Comments
 (0)