diff --git a/controllers/web/product.py b/controllers/web/product.py index 4b983ef..2a4a135 100644 --- a/controllers/web/product.py +++ b/controllers/web/product.py @@ -74,7 +74,6 @@ def id(id: int): flash(f"No Product available with id {id}", "warning") return redirect("/") - print(product.name) return render_template( 'index.html', content='product.html', diff --git a/static/assets/img/WMGZON.png b/static/assets/img/WMGZON.png deleted file mode 100644 index 47a4a4f..0000000 Binary files a/static/assets/img/WMGZON.png and /dev/null differ diff --git a/static/assets/img/cart.bmp b/static/assets/img/cart.bmp new file mode 100644 index 0000000..f9f24f4 Binary files /dev/null and b/static/assets/img/cart.bmp differ diff --git a/static/assets/img/wmgzon.bmp b/static/assets/img/wmgzon.bmp new file mode 100644 index 0000000..0bdce4c Binary files /dev/null and b/static/assets/img/wmgzon.bmp differ diff --git a/static/css/style.css b/static/css/style.css index 4ae2f0a..c4dfde2 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -86,11 +86,22 @@ nav form { top: -2rem; } +.vert-align { + display: flex; + align-items: center; + gap: 1rem; +} + #logo { - width: 8rem; + width: 10rem; height: auto; } +#cart { + height: 4rem; + width: auto; +} + *::-webkit-scrollbar, *::-webkit-scrollbar-thumb { width: 26px; diff --git a/templates/header.html b/templates/header.html index b15e51e..21d686c 100644 --- a/templates/header.html +++ b/templates/header.html @@ -1,15 +1,18 @@