We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 68d9534 commit fd589c2Copy full SHA for fd589c2
1 file changed
packages/eui-theme-common/src/utils.ts
@@ -474,13 +474,15 @@ export const getTokenName = (
474
* The "up" direction is built by making the y offset from layers
475
* two and any subsequent layers, negative.
476
*
477
+ * @todo add a color space param to replace the hard-coded `hsl`
478
+ *
479
* @param layers
480
* @param up - Modifies some values in order to get the "up" direction
481
* @returns - A value for the CSS `box-shadow` property
482
*/
483
export function formatMultipleBoxShadow(
484
layers: _EuiThemeShadowLayer[],
- up: boolean = false,
485
+ up: boolean = false
486
) {
487
/* prettier-ignore */
488
const shadowLayers = layers.map((layer, i) => {
0 commit comments