summaryrefslogtreecommitdiffstats
path: root/browser/components/payments/res/containers/order-details.css
diff options
context:
space:
mode:
Diffstat (limited to 'browser/components/payments/res/containers/order-details.css')
-rw-r--r--browser/components/payments/res/containers/order-details.css55
1 files changed, 55 insertions, 0 deletions
diff --git a/browser/components/payments/res/containers/order-details.css b/browser/components/payments/res/containers/order-details.css
new file mode 100644
index 0000000000..beadeb3b88
--- /dev/null
+++ b/browser/components/payments/res/containers/order-details.css
@@ -0,0 +1,55 @@
+/* This Source Code Form is subject to the terms of the Mozilla Public
+ * License, v. 2.0. If a copy of the MPL was not distributed with this
+ * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
+
+order-details {
+ display: grid;
+ grid-template-columns: 20% auto 10rem;
+ grid-gap: 1em;
+ margin: 1px 4vw;
+}
+
+order-details > ul {
+ list-style-type: none;
+ margin: 1em 0;
+ padding: 0;
+ display: contents;
+}
+
+order-details payment-details-item {
+ margin: 1px 0;
+ display: contents;
+}
+payment-details-item .label {
+ grid-column-start: 1;
+ grid-column-end: 3;
+}
+payment-details-item currency-amount {
+ grid-column-start: 3;
+ grid-column-end: 4;
+}
+
+order-details .footer-items-list:not(:empty):before {
+ border: 1px solid GrayText;
+ display: block;
+ content: "";
+ grid-column-start: 1;
+ grid-column-end: 4;
+}
+
+order-details > .details-total {
+ margin: 1px 0;
+ display: contents;
+}
+
+.details-total > .label {
+ margin: 0;
+ font-size: large;
+ grid-column-start: 2;
+ grid-column-end: 3;
+ text-align: end;
+}
+.details-total > currency-amount {
+ font-size: large;
+ text-align: end;
+}