This commit is contained in:
rizky 2024-07-22 05:22:21 -07:00
parent 6c56c88578
commit 42e0b9b686
2 changed files with 6 additions and 2 deletions

View File

@ -78,6 +78,9 @@ const genList = async (opt: GenOpt) => {
const list_child = createItem({ const list_child = createItem({
name: "list: fields", name: "list: fields",
adv: {
css: "& {\n display: flex;\n\n &:hover {\n background: #ecf4ff;\n }\n}",
},
padding: { padding: {
l: 10, l: 10,
b: 3, b: 3,

View File

@ -70,8 +70,9 @@ type SimplifiedItem = {
}; };
childs?: SimplifiedItem[]; childs?: SimplifiedItem[];
adv?: { adv?: {
js: string; css?: string;
jsBuilt: string; js?: string;
jsBuilt?: string;
}; };
padding?: any; padding?: any;
dim?: any; dim?: any;