Skip to content

Commit

Permalink
refactor: Improved size of buttons used to add toppings and added web…
Browse files Browse the repository at this point in the history
…p images to improve loading time for images
  • Loading branch information
25Ericcheong committed May 18, 2024
1 parent 1a75dcd commit 1fd683c
Show file tree
Hide file tree
Showing 46 changed files with 2 additions and 2 deletions.
Binary file added src/assets/images/about-us/bingsu-about-us.webp
Binary file not shown.
Binary file added src/assets/images/header/bingsu-in-store.webp
Binary file not shown.
Binary file added src/assets/images/header/bingsu.webp
Binary file not shown.
Binary file added src/assets/images/header/cheesey-bingsu.webp
Binary file not shown.
Binary file added src/assets/images/menu/bingsus/hoji-cha-cha.webp
Binary file not shown.
Binary file not shown.
Binary file added src/assets/images/menu/bingsus/mango.webp
Binary file not shown.
Binary file added src/assets/images/menu/bingsus/matcha.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/assets/images/menu/drinks/grape-cheezo.webp
Binary file not shown.
Binary file added src/assets/images/menu/drinks/lychee-cheezo.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/assets/images/menu/toppings/aiyu-jelly.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/assets/images/menu/toppings/grapefruit.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/assets/images/menu/toppings/lychee.webp
Binary file not shown.
Binary file added src/assets/images/menu/toppings/mango.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/assets/images/menu/toppings/red-bean.webp
Binary file not shown.
Binary file not shown.
Binary file added src/assets/images/menu/toppings/taroballs.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added src/assets/images/menu/toppings/watermelon.webp
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions src/components/menu/topping-menu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ function handleToppingConfirmation() {
>
<div class="w-2/3 sm:w-1/2 pb-5 sm:pb-0 flex justify-between items-center">
<button
class="bg-darkorangebq h-[60%] sm:h-3/4 p-2 rounded-full"
class="bg-darkorangebq h-[35px] p-2 rounded-full"
:disabled="quantitySelected === 0"
:class="condButtonDisable"
@click="() => handleQuantityUpdate(-1)"
Expand All @@ -37,7 +37,7 @@ function handleToppingConfirmation() {
</button>
<p>{{ quantitySelected }}</p>
<button
class="bg-darkorangebq h-[60%] sm:h-3/4 p-2 rounded-full"
class="bg-darkorangebq h-[35px] p-2 rounded-full"
@click="() => handleQuantityUpdate(1)"
>
<img class="h-full" src="../../assets/icons/addition.jpg" />
Expand Down

0 comments on commit 1fd683c

Please sign in to comment.