Please tell me how you can increase the size of the canvas card’s nameplate in the center. The same text that appears when you move away.
1 Like
Not sure which part of the text you’re referring to?
1 Like
I’ve already decided, I was able to find it through deftools
div.canvas-node-placeholder {
transform: scale(1) !important;
transform-origin: center center !important;
z-index: 9999 !important;
position: relative !important;
}
div.canvas-node-placeholder {
font-size: 100px !important;
font-weight: 900 !important;
color: #ff0000 !important;
text-shadow: 0 0 10px rgba(255,0,0,0.8) !important;
background: rgba(0,0,0,0.9) !important;
padding: 20px !important;
border: 5px solid #ff0000 !important;
border-radius: 10px !important;
}
1 Like
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.