Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release #119

Merged
merged 2 commits into from
May 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions confirmation.html
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
<h4 class="card-title pb-4 text-center">Your order is arriving soon</h4>
<script id="template" type="text/x-handlebars-cart">
{{#each this}}
<li class="list-group-item d-flex justify-content-between lh-condensed mb-2">
<li class="list-group-item d-flex justify-content-between lh-condensed">
<img src="assets/stars/{{Color}}.png" class="card-img-top cart-image border-bottom border-dark img-fluid">
<div>
<h6 class="my-0 text-start">{{ProperName}}</h6>
Expand Down Expand Up @@ -121,7 +121,7 @@ <h6 class="my-0 text-start">{{ProperName}}</h6>
<div class="container">
<script id="template" type="text/x-handlebars-checkout">
{{#each this}}
<div class="col-12 col-sm-10 col-md-8 col-xl-4">
<div class="col-12 col-sm-10 col-md-8 col-xl-6">
<ul class="list-group mt-1">
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
Expand Down
8 changes: 4 additions & 4 deletions css/bootstrap-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -5106,12 +5106,12 @@ textarea.form-control-lg {
border: 1px solid rgba(0, 0, 0, 0.125);
}
.list-group-item:first-child {
border-top-left-radius: inherit;
border-top-right-radius: inherit;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
}
.list-group-item:last-child {
border-bottom-right-radius: inherit;
border-bottom-left-radius: inherit;
border-bottom-right-radius: 20px;
border-bottom-left-radius: 20px;
}
.list-group-item.disabled, .list-group-item:disabled {
color: #6c757d;
Expand Down
4 changes: 2 additions & 2 deletions partials/ordermodal.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ <h1 class="modal-title fs-5 display-2">For {{checkout.[0].value}}</h1>
<div class="text-center">
<ul class="list-group mb-1">
{{#each data}}
<li class="list-group-item d-flex justify-content-between lh-condensed mb-2">
<li class="list-group-item d-flex justify-content-between lh-condensed">
<img src="assets/stars/{{Color}}.png"
class="card-img-top cart-image border-bottom border-dark img-fluid">
<div>
Expand Down Expand Up @@ -43,7 +43,7 @@ <h6 class="my-0 text-start">{{ProperName}}</h6>
</div>
<div class="row justify-content-center">
{{#each checkout}}
<div class="col-12 col-sm-10 col-md-8 col-xl-4">
<div class="col-12 col-sm-10 col-md-8 col-xl-6">
<ul class="list-group mt-1">
<li class="list-group-item d-flex justify-content-between lh-condensed">
<div>
Expand Down
2 changes: 1 addition & 1 deletion support.html
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ <h4 class="card-title pb-4 text-center">Question sent - Support is working on a
</script>
<div class="card-body "></div>
<div class="card-footer text-center ">
<a href="/index.html#support" class="btn btn-primary btn-lg">Home</a>
<a href="/starshop/index.html#support" class="btn btn-primary btn-lg">Home</a>
</div>
</div>
</div>
Expand Down