diff options
author | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-25 20:36:09 +0530 |
---|---|---|
committer | MikunoNaka <bokuwakanojogahoshii@yahoo.com> | 2021-06-25 20:36:09 +0530 |
commit | c29507c2e32d5a3fe25c6fe3dbfba9700f93316e (patch) | |
tree | de6d19871365dff1ddd50cee086eb06a581f6325 /src/components/Display | |
parent | 0d90508977837bec25f038fe5380e6fb3bc82745 (diff) |
Adapted the UI for mobile (table incomplete)
Diffstat (limited to 'src/components/Display')
-rw-r--r-- | src/components/Display/Display.scss | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/src/components/Display/Display.scss b/src/components/Display/Display.scss index bef03dc..592f4ec 100644 --- a/src/components/Display/Display.scss +++ b/src/components/Display/Display.scss @@ -8,9 +8,9 @@ @import "../../styles/theme"; -.ItemsDisplay, -.ItemsDisplay table { +.ItemsDisplay { width: 100%; + box-sizing: border-box; } .ItemsDisplay { @@ -73,3 +73,10 @@ font-size: 2rem; color: $foreground2; } + +@media only screen and (max-device-width: 480px) { + .SummaryDisplay { + width: auto; + min-height: 16rem; + } +} |