diff options
author | Renard | 2020-03-08 18:04:24 -0300 |
---|---|---|
committer | Renard | 2020-03-08 18:04:24 -0300 |
commit | d647b3e6628d76dbe207ce5991335c30787a8a6d (patch) | |
tree | 7881d6a43398a01b20a7e60c2e21b8d3b082b87c /src/App.css | |
download | bairadio-app-d647b3e6628d76dbe207ce5991335c30787a8a6d.tar.gz bairadio-app-d647b3e6628d76dbe207ce5991335c30787a8a6d.tar.xz bairadio-app-d647b3e6628d76dbe207ce5991335c30787a8a6d.zip |
First commit
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; +} |