Skip to content

Commit

Permalink
Merge branch 'dev' into cw-2267-support-darkmode
Browse files Browse the repository at this point in the history
  • Loading branch information
roienatan committed Nov 8, 2023
2 parents d7c1c5e + 36c411b commit 8d6cb56
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
12 changes: 12 additions & 0 deletions craco.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,17 @@ module.exports = {
tsConfigPath: "./tsconfig.paths.json",
},
},
{
plugin: {
overrideWebpackConfig: ({ webpackConfig }) => {
webpackConfig.devtool =
process.env.REACT_APP_ENV === "dev"
? "source-map"
: "eval-cheap-module-source-map";

return webpackConfig;
},
},
},
],
};
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@
text-align: start;
font-size: $small;
color: var(--primary-text);
max-width: 33.563rem;
margin-right: 2.8rem;

&:hover {
.menuArrowButton {
Expand Down Expand Up @@ -90,6 +92,8 @@

.messageTextCurrentUser {
background-color: $c-pink-active-feed-cards;
margin-left: 2.8rem;
margin-right: unset;
}

.systemMessageContainer {
Expand All @@ -103,6 +107,7 @@
font-size: $xxsmall-2;
color: $c-gray-60;
direction: ltr;
margin: 0 4.25rem;
}

.messageName {
Expand Down

0 comments on commit 8d6cb56

Please sign in to comment.