score:0
Accepted answer
This page on electron-react-boilerplate, which seems to only be findable via Google and not on their site, pointed me to edit app.global.css
. Seems really wrong that I have to do this when the module already imports its own styles, but it worked:
Replaced the contents of app.global.css with:
@import "~react-chat-window/lib/styles/chat-window.css";
@import "~react-chat-window/lib/styles/launcher.css";
@import "~react-chat-window/lib/styles/emojiPicker.css";
@import "~react-chat-window/lib/styles/header.css";
@import "~react-chat-window/lib/styles/message.css";
@import "~react-chat-window/lib/styles/popup-window.css";
@import "~react-chat-window/lib/styles/user-input.css";
Source: stackoverflow.com
Related Query
- React + Electron: components from deps aren't laying out properly
- React Styled Components stripped out from production build
- Issue laying out components with React and Flexbox
- Unable to dynamically render custom react components properly after fetching from backend
- How to send events from electron to react components only after all components are ready?
- Rendering React Components from Array of Objects
- Generating a PDF file from React Components
- Call external Javascript function from react components
- How to slide <View/> in and out from the bottom in React Native?
- How to get values from child components in React
- access token from auth0provider outside of react components
- React JS: how to properly remove an item from this.state.data where data is an array of objects
- How can I dispatch from child components in React Redux?
- How to use react components from other files
- how to import data in react from a js file to use in components
- How to properly import React JSX from separate file in Typescript 1.6
- Rendering React Components from an Object
- Rendering React components from json data dynamically
- React prevent remounting components passed from props
- Minimal Example: Opening a window in electron from react application?
- React + Material-UI style classes from different components conflict when served statically
- React js: Open same modal from different components
- React update state in parent from child components
- Interacting with React components from non-react world
- Does React automatically prune components which have had their mount points removed from the DOM?
- creating pure web component from react components
- How can I import React Components as a package/module from some other(non-project) directory?
- React : Firing a custom alert from multiple components using an existing component having its own styles
- React Components from Separate App not integrating into Main App
- what is proper way to import multiple components from same file in react instead of getting each component imported
More Query from same tag
- useEffect always work while using array dependency of boolean value
- How to tell if Gatsby Image component has loaded?
- How to tackle No QueryClient set, use QueryClientProvider to set one in React Query v3
- Rendering React Table [v7] results in [object Object]
- Redux: yield inside an anonymous function
- why when I use axios to post data to my mongodb cloud I got an object with _id and empty fields?
- Using setState() to set more complex data
- React has detected a change in the order of Hooks
- Victory - data visualization
- How to pass both this.state and this.props to routes using react-router
- How do I make parent component stay while switching between other components in react router v6?
- How could I put my background image behind a Navbar in react?
- Should React/Redux development be Object Oriented Programming or Functional Programming?
- ReactDOM to render multiple elements using the same class at ones?
- How to access electron.app.getPath()?
- PostgresSql : error: syntax error at or near "?"
- event.currentTarget.name returning as currentTarget
- my information is not being sent to my database
- How to display all the images from firebase storage in React?
- Cannot set style-display of a div containing another component through a component in React.js
- onTouchStart event triggering Parent OnClick Event in react js
- React Forward Ref not working as with Custom Compoent
- How to resize a material-ui button
- How to get React App change content on the screen when screen width changes
- Query string searches from AWS database
- Updates in my React application aren't taken into account Webpack dev server
- SetPage is not a function ERROR while trying to paginate
- How to navigate to a new page in react?
- React Hook useEffect has missing .missing dependencies: 'Score', 'props', and 'windowDimension
- How do you pass additional props to a functional component in React?