Changed close button style on index.ejs

This commit is contained in:
Matthew Patrick 2021-11-21 13:57:14 +07:00
parent 452cec0223
commit d67ac3bf08
2 changed files with 13 additions and 1 deletions

View file

@ -21,6 +21,18 @@ body {
width: 5%;
}
.button-close {
color: white;
background-color: darkred;
border-color: darkred;
border-radius: 100px;
}
.button-close:hover {
background-color: red;
border-color: red;
}
@media screen and (max-width: 500px) {
.navbar-brand {
width: 15vw;

View file

@ -580,7 +580,7 @@
You have successfully subscribed to the newsletter. Thank you for your subscription.
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-secondary button-close" data-dismiss="modal">Close</button>
</div>
</div>
</div>