diff options
Diffstat (limited to 'src/App.css')
-rw-r--r-- | src/App.css | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/App.css b/src/App.css new file mode 100644 index 0000000..1b1cca9 --- /dev/null +++ b/src/App.css @@ -0,0 +1,26 @@ +body { + background-color: #373b41; +} + +.dropdownLabel { + display: block; + margin: 0 0 0.28571429rem 0; + color: rgba(0, 0, 0, 0.87); + font-size: 0.92857143em; + font-weight: 700; + text-transform: none; +} + +#historyContainer { + min-height: 6em; + max-height: 6em; + overflow-y: scroll; + overflow-wrap: break-word; +} + +#chatContainer { + min-height: 25em; + max-height: 25em; + overflow-y: scroll; + overflow-wrap: break-word; +} |