牌位版面調整

This commit is contained in:
2026-07-12 21:22:38 +08:00
parent 2686506f9c
commit d71cc605dc
8 changed files with 864 additions and 37 deletions
+12 -12
View File
@@ -1334,9 +1334,9 @@
"flex-direction": "row",
"flex-wrap": "wrap",
margin: "auto",
"letter-spacing": "0.1em",
"column-gap": "1px",
"row-gap": "1px",
//"letter-spacing": "0.1em",
"column-gap": `${d.textSpan}px`,
//"row-gap": "1px",
"align-items": "flex-start",
"justify-content": "start",
});
@@ -1374,9 +1374,9 @@
border: "0px solid #ccc",
padding: "1px",
"font-family": style.fontFamily,
"letter-spacing": "0.1em",
"column-gap": "1px",
"row-gap": "1px",
//"letter-spacing": "0.1em",
"column-gap": `${d.textSpan}px`,
//"row-gap": "1px",
"align-items": "center",
"justify-content": "start",
});
@@ -1396,7 +1396,7 @@
//width: `${newFontSize}px`,
"text-align": "justify",
"text-align-last": "justify",
"margin-bottom": "20px",
//"margin-bottom": "20px",
"margin-left": "5px",
"text-justify": "inter-character",
"white-space": "pre-line",
@@ -1418,9 +1418,9 @@
border: "0px solid #ccc",
padding: "1px",
"font-family": el.fontFamily,
"letter-spacing": "0.1em",
"column-gap": "1px",
"row-gap": "1px",
//"letter-spacing": "0.1em",
"column-gap": `${el.textSpan}px`,
//"row-gap": "1px",
"align-items": "center",
});
let self = this;
@@ -1438,7 +1438,7 @@
height: `${el.textHeight}px`,
"text-align": "justify",
"text-align-last": "justify",
"margin-bottom": "10px",
//"margin-bottom": "10px",
"text-justify": "inter-character",
"white-space": "pre-line"
});
@@ -1484,7 +1484,7 @@
"white-space": "pre-line"
})
items.forEach(x => {
g.append($(`<div class="" style="letter-spacing: 10px;">${x}</div>`))//font-size:${el.fontSize}pt;
g.append($(`<div class="" style="letter-spacing: 10px;text-align: justify; text-align-last: justify;">${x}</div>`))//font-size:${el.fontSize}pt;
})
return g;
},