Skip to content

Commit

Permalink
fix(Theme): Shadow 25 wasn't in Mui theme
Browse files Browse the repository at this point in the history
  • Loading branch information
JF-Cozy committed Nov 28, 2024
1 parent 29007a0 commit cc5486e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react/MuiCozyTheme/helpers.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,6 @@ export const getFlagshipCssVar = position =>
* @returns {array} Array of Mui shadows
*/
export const makeShadows = (type, variant) =>
[...Array(25)].map((_, index) =>
[...Array(26)].map((_, index) =>
getCssVariableValue(`shadow${index}`, type, variant)
)

0 comments on commit cc5486e

Please sign in to comment.