You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we're implementing a "file" approach for documentation of CSS and SCSS variables. For CSS vars, this can be very cryptic since a lot of custom properties are set and output using core functions and mixins. We should improve this by displaying the true names and values for every CSS variable used by a component. Here are a few options to explore:
Using JavaScript, get the computed styles: e.g: searching for vars with --vb-[component]-* etc.
Use the core functions/mixins to store CSS var usage and find a way to output that data to the front-end.
Crawl the output CSS file for all CSS variable definitions and usages.
The text was updated successfully, but these errors were encountered:
Problem
Currently we're implementing a "file" approach for documentation of CSS and SCSS variables. For CSS vars, this can be very cryptic since a lot of custom properties are set and output using core functions and mixins. We should improve this by displaying the true names and values for every CSS variable used by a component. Here are a few options to explore:
--vb-[component]-*
etc.The text was updated successfully, but these errors were encountered: