Fix light mode on SignalConnectionsModal
This commit is contained in:
parent
0cd09c6259
commit
bedfbbca5f
3 changed files with 5 additions and 3 deletions
|
@ -56,6 +56,8 @@ export type PropsType = {
|
|||
viewUserStories: ViewUserStoriesActionCreatorType;
|
||||
};
|
||||
|
||||
export const STORIES_COLOR_THEME = Theme.Dark;
|
||||
|
||||
export function Stories({
|
||||
addStoryData,
|
||||
deleteStoryForEveryone,
|
||||
|
@ -102,7 +104,7 @@ export function Stories({
|
|||
);
|
||||
|
||||
return (
|
||||
<div className={classNames('Stories', themeClassName(Theme.Dark))}>
|
||||
<div className={classNames('Stories', themeClassName(STORIES_COLOR_THEME))}>
|
||||
{addStoryData && renderStoryCreator()}
|
||||
<div className="Stories__pane" style={{ width }}>
|
||||
{isMyStories && myStories.length ? (
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue