Skip to content

Commit

Permalink
fix: bootstrap button and footer styling
Browse files Browse the repository at this point in the history
  • Loading branch information
RadovanTomik committed Oct 3, 2023
1 parent 277888c commit 23aa602
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
9 changes: 3 additions & 6 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@
</div>
<div class="container">
<div class="col-12">
<footer>
<footer
class="bottom-0 p-0 w-100"
>
<hr class="mt-10 mb-10">
<div class="row">
<div class="col text-center">
Expand Down Expand Up @@ -96,10 +98,5 @@ header {
place-items: flex-start;
flex-wrap: wrap;
}
footer {
padding: 10px;
bottom: 0;
width: 100%;
}
}
</style>
11 changes: 2 additions & 9 deletions src/components/ConfirmationModal.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,13 @@
</p>
<div class="modal-footer justify-content-center">
<button
class="btn btn-secondary"
@click="closeModal"
>
No
</button>
<button
class="btn-secondary"
class="btn btn-danger"
@click="closeModal; $emit('abandon-negotiation')"
>
Yes
Expand Down Expand Up @@ -52,12 +53,4 @@ export default {
border-radius: 10px;
z-index: 1;
}
.btn-danger {
background-color: red;
border: 1px solid red;
color: white;
border-radius: 5px;
padding: 5px 10px;
cursor: pointer;
}
</style>

0 comments on commit 23aa602

Please sign in to comment.