Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
steffenheger committed Sep 6, 2024
1 parent 3b6d07c commit c5723bc
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions src/routes/(user)/taxi/ConfirmationDialog.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
function handleCancel() {
showDialog = false;
// alert('You clicked Cancel!');
}
function openDialog() {
Expand All @@ -18,7 +17,6 @@
</script>

{#if showDialog}
<div class="overlay" on:click={handleCancel}></div>
<div class="dialog">
<p>Are you sure?</p>
<button on:click={handleConfirm}>Ok</button>
Expand All @@ -41,16 +39,6 @@
z-index: 1000;
}
.overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 999;
}
button {
padding: 10px 20px;
margin: 5px;
Expand Down

0 comments on commit c5723bc

Please sign in to comment.