diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-26 19:46:35 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-04-26 19:46:35 +0530 |
commit | 7dbbfc0c2eac7000bf208ce068e887b4db14ea5f (patch) | |
tree | f82316aa52a597362c388b73a2974f48991f6cdb /src/components/Display/Display.scss | |
parent | 66b4673b4e05275643353026275360001e4a9172 (diff) |
Minor styling + fixed the calculation of discount and taxes and added new calculations
Diffstat (limited to 'src/components/Display/Display.scss')
-rw-r--r-- | src/components/Display/Display.scss | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/src/components/Display/Display.scss b/src/components/Display/Display.scss index 7fa37a3..3c49b7e 100644 --- a/src/components/Display/Display.scss +++ b/src/components/Display/Display.scss @@ -41,5 +41,22 @@ } .SummaryDisplay { - border: 1px solid pink; + width: 30%; + padding: 0.5rem 2rem; +} + +.SummaryDisplay h1 { + font-size: 3rem; + margin: 0.5rem -1.5rem; + border-bottom: 1px dotted $labelUnderlineColor; +} + +.SummaryDisplay table { + width: 100%; + margin: auto; +} + +.SummaryDisplay td { + font-size: 1.25rem; + padding: 0.2rem 0; } |