aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/main/kotlin/pl/treksoft/kvision/core/Css.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main/kotlin/pl/treksoft/kvision/core/Css.kt b/src/main/kotlin/pl/treksoft/kvision/core/Css.kt
index e2108136..a1810c2d 100644
--- a/src/main/kotlin/pl/treksoft/kvision/core/Css.kt
+++ b/src/main/kotlin/pl/treksoft/kvision/core/Css.kt
@@ -677,7 +677,7 @@ class TextDecoration(
* @param blurRadius the blur radius
* @param color color of the shadow
*/
-class TextShadow private constructor(
+class TextShadow(
private val hShadow: CssSize? = null, private val vShadow: CssSize? = null,
private val blurRadius: CssSize? = null, private val color: Color? = null
) {