ref: Styles refactor (#13196)

Move some styles from SCSS to JSS
Remove unnecessary styles
Remove feedback stars animation option
This commit is contained in:
Robert Pintilii
2023-04-13 15:49:15 +03:00
committed by GitHub
parent 33564a311b
commit cc91cfe7b5
17 changed files with 98 additions and 447 deletions

View File

@@ -1,5 +1,5 @@
import { AtlasKitThemeProvider } from '@atlaskit/theme';
import React, { Fragment } from 'react';
import React from 'react';
import GlobalStyles from '../../base/ui/components/GlobalStyles.web';
import JitsiThemeProvider from '../../base/ui/components/JitsiThemeProvider.web';
@@ -31,9 +31,9 @@ export class App extends AbstractApp {
*/
_createExtraElement() {
return (
<Fragment>
<JitsiThemeProvider>
<OverlayContainer />
</Fragment>
</JitsiThemeProvider>
);
}