@teachinglab/omd 0.2.10 → 0.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -375,9 +375,11 @@ export class omdStepVisualizerInteractiveSteps {
|
|
|
375
375
|
alignItems: 'flex-start !important'
|
|
376
376
|
};
|
|
377
377
|
|
|
378
|
-
// Add drop shadow if requested
|
|
379
|
-
|
|
380
|
-
|
|
378
|
+
// Add drop shadow if requested - but NOT to individual step boxes
|
|
379
|
+
// The drop shadow should only be on the outer background rectangle
|
|
380
|
+
// Remove any previous drop shadow from individual steps
|
|
381
|
+
if (stepBox.div) {
|
|
382
|
+
stepBox.div.style.boxShadow = 'none';
|
|
381
383
|
}
|
|
382
384
|
|
|
383
385
|
// Set font family if specified
|