Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit ab6c61d

Browse files
author
Anders Fredrik Kiær
committed
Update __init__.py in base
1 parent 5ffa875 commit ab6c61d

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

dash_core_components_base/__init__.py

+9-1
Original file line numberDiff line numberDiff line change
@@ -135,5 +135,13 @@
135135
},
136136
])
137137

138+
_css_dist = [
139+
{
140+
'relative_package_path': '{}.css'.format(__name__),
141+
'namespace': 'dash_core_components',
142+
}
143+
]
144+
138145
for _component in __all__:
139-
setattr(locals()[_component], '_js_dist', _js_dist)
146+
setattr(locals()[_component], '_js_dist', _js_dist)
147+
setattr(locals()[_component], '_css_dist', _css_dist)

0 commit comments

Comments
 (0)