diff --git a/src/static/styles/main.css b/src/static/styles/main.css
index 613d29b..7cfbe56 100644
--- a/src/static/styles/main.css
+++ b/src/static/styles/main.css
@@ -485,7 +485,7 @@ section:not(:last-child) {
background-blend-mode: multiply;
background-size: cover;
background-position: center;
- color: white;
+ color: #f1e8e2;
text-align: center;
padding: 2rem 1rem;
font-family: 'Vollkorn', serif;
@@ -577,6 +577,11 @@ article > header {
display: flex;
justify-content: space-between;
align-items: center;
+ align-content: center;
+}
+
+.article__header--with-action h1 {
+ margin-bottom: 0;
}
article + article {
@@ -883,6 +888,16 @@ article + article {
}
+/* ==========================================================================
+ Customer/User
+ ========================================================================== */
+.customer__detail-section {
+ display: grid;
+ grid-template-columns: repeat(2, 1fr);
+ gap: 4rem;
+}
+
+
/* ==========================================================================
diff --git a/src/storefront/templates/storefront/customer_detail.html b/src/storefront/templates/storefront/customer_detail.html
index 52cba99..e833612 100644
--- a/src/storefront/templates/storefront/customer_detail.html
+++ b/src/storefront/templates/storefront/customer_detail.html
@@ -11,25 +11,27 @@
- Email address
- Default shipping address
- {% with shipping_address=customer.default_shipping_address %}
- Info
-
- {{customer.email}}
- Manage
-
- {{shipping_address.street_address_1}}
- {% if shipping_address.street_address_2 %}
- {{shipping_address.street_address_2}}
- {% endif %}
- {{shipping_address.city}}, {{shipping_address.state}}, {{shipping_address.postal_code}}
-
- {% endwith %}
-
+ Change password +