While exploring the Vuestic admin dashboard tool, I noticed a glitch in the UI where the donut chart appeared larger than its container. I tried to troubleshoot and fix it for submission as a PR, but I encountered an unfamiliar CSS selector > *
while debugging the Vue Chart Base class at this link, which puzzled me.
My understanding of > *
in CSS:
As the >
selector retrieves all children, and the *
selector selects every element on the page, I assumed that using this selector targets every child element specifically.
In the context of a Vue Component, I believe CSS is scoped to that particular component. Could anyone confirm if my interpretation is accurate or mistaken?