diff --git a/.gitignore b/.gitignore index 41fe8a917..77f03b913 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,3 @@ __pycache__/ # Chat environment chat/node_modules chat/build - -# Chat artefacts -files/assets/css/chat_done.css -files/assets/js/chat_done.js diff --git a/chat/src/App.css b/chat/src/App.css index 8096b0548..e1bfdc87d 100644 --- a/chat/src/App.css +++ b/chat/src/App.css @@ -118,10 +118,6 @@ body { padding-right: 1rem; padding-left: 1rem; } - - .App-content__reduced { - height: calc(var(--vh, 1vh) * 55); - } } lite-youtube { diff --git a/chat/src/App.tsx b/chat/src/App.tsx index 96e9c2844..0b30f18db 100644 --- a/chat/src/App.tsx +++ b/chat/src/App.tsx @@ -1,5 +1,3 @@ -(window as any).global = window; - import cx from "classnames"; import throttle from "lodash.throttle"; import React, { useCallback, useEffect, useRef, useState } from "react"; @@ -106,9 +104,7 @@ function AppInner() {
{open ? ( diff --git a/chat/src/features/chat/UserInput.css b/chat/src/features/chat/UserInput.css index d6791a777..d05e8fb92 100644 --- a/chat/src/features/chat/UserInput.css +++ b/chat/src/features/chat/UserInput.css @@ -4,14 +4,6 @@ align-items: center; } -@media screen and (max-width: 1100px) { - .UserInput-input__large { - min-height: 100px !important; - height: 100px !important; - max-height: 100px !important; - } -} - .UserInput-input { flex: 1; margin-right: 2rem; @@ -20,6 +12,14 @@ max-height: 50px; } +@media screen and (max-width: 1100px) { + .UserInput-input { + min-height: 100px !important; + height: 100px !important; + max-height: 100px !important; + } +} + .UserInput-emoji { cursor: pointer; font-size: 20px; diff --git a/chat/src/features/chat/UserInput.tsx b/chat/src/features/chat/UserInput.tsx index 59d0d5da3..f296a7160 100644 --- a/chat/src/features/chat/UserInput.tsx +++ b/chat/src/features/chat/UserInput.tsx @@ -117,9 +117,7 @@ export function UserInput({ large = false, onFocus, onBlur }: Props) {