aboutsummaryrefslogtreecommitdiff
path: root/src/components/Display/Display.scss
diff options
context:
space:
mode:
authorMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-17 19:04:55 +0530
committerMikunoNaka <bokuwakanojogahoshii@yahoo.com>2021-04-17 19:04:55 +0530
commitee77e57189a6b0375e840b386754973a376dc089 (patch)
treeeb5868219a01c68acb6ae996d99629020ef00e89 /src/components/Display/Display.scss
parent444a8147f59df78ebf14222edcebf944226b533e (diff)
added a way to see the total cost and number of items in ItemsDisplay
Diffstat (limited to 'src/components/Display/Display.scss')
-rw-r--r--src/components/Display/Display.scss20
1 files changed, 13 insertions, 7 deletions
diff --git a/src/components/Display/Display.scss b/src/components/Display/Display.scss
index 25bb331..8863842 100644
--- a/src/components/Display/Display.scss
+++ b/src/components/Display/Display.scss
@@ -6,22 +6,28 @@
}
.ItemsDisplay {
- $sideBorder: 1px dashed $tableBorderColor;
- border-right: $sideBorder;
- border-left: $sideBorder;
+ margin: 3rem auto;
+}
+
+.ItemsDisplay .legend {
+ background-color: $altBG;
+}
- padding: 1rem 0.5rem;
+.ItemsDisplay th {
+ font-size: 1.2rem;
}
.ItemsDisplay td {
text-align: center;
- border-bottom: 1px solid $labelUnderlineColor;
+ border-bottom: 1px solid $tableDefBorderColor;
+ font-size: 1.5rem;
}
.ItemsDisplay .leftAlign {
text-align: left;
}
-.ItemsDisplay .legend {
- background-color: $altBG;
+.ItemsDisplay .altBorder {
+ border-bottom: 1px solid $tableAltBorderColor;
}
+