Skip to content

Commit

Permalink
fix: Possible solution to confirm button pouring out of dialog
Browse files Browse the repository at this point in the history
  • Loading branch information
25Ericcheong committed May 18, 2024
1 parent f234849 commit 1a75dcd
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 4 deletions.
6 changes: 4 additions & 2 deletions src/components/menu/bingsu-menu-modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -327,9 +327,11 @@ function handleBingsuConfirmation() {
type="text"
></textarea>
</div>
<div class="fixed bottom-10 bg-creamyellowbq block">
<div
class="fixed bottom-10 left-[50%] bg-creamyellowbq block -ml-[160px]"
>
<button
class="w-[365px] p-2 bg-darkorangebq rounded-full text-creamwhitebq"
class="w-[315px] p-2 bg-darkorangebq rounded-full text-creamwhitebq"
:class="{
'opacity-50': shouldDisableConfirmationButton,
}"
Expand Down
6 changes: 4 additions & 2 deletions src/components/menu/drinks-menu-modal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -230,9 +230,11 @@ function handleDrinksConfirmation() {
type="text"
></textarea>
</div>
<div class="fixed bottom-10 bg-creamyellowbq block">
<div
class="fixed bottom-10 left-[50%] bg-creamyellowbq block -ml-[160px]"
>
<button
class="w-[365px] p-2 bg-darkorangebq rounded-full text-creamwhitebq"
class="w-[315px] p-2 bg-darkorangebq rounded-full text-creamwhitebq"
:class="{
'opacity-50': shouldDisableConfirmationButton,
}"
Expand Down

0 comments on commit 1a75dcd

Please sign in to comment.