Nested components styling
export default {
/* Shortcut notation */
headerLoader: "{ULoaderProgress} ...",
/* Full notation */
bodyCellNestedExpandIcon: {
base: "{UIcon}",
...
},
};export default {
component: {
UTable: {
/* Redefining top-level component's element classes (shortcut). */
headerLoader: "absolute !top-auto",
/* Redefining classes for any component's nested elements. */
bodyCellNestedExpandIcon: {
wrapper: "rounded-sm",
container: "bg-gray-200",
},
}
}
};Last updated