Files

78 lines
659 B
JavaScript
Raw Permalink Normal View History

2025-12-25 11:16:59 +01:00
export default class label{
constructor( text, gridName ) {
this.text = text;
this.gridArea = gridName;
}
layers = 1;
gridArea = "passwordLabel";
text = "password";
color = "black";
padding = 20;
fontSize = 12;
#ifdef WINDOWS
fontWeight = "bold";
#ifdef LIGHT
color = "#282626";
#endif
#ifdef DARK
color = "white";
#endif
#endif
#ifdef MACOS
padding = 10;
paddingLeft = 0;
boxWidth = "100%";
#ifdef LIGHT
#endif
#ifdef DARK
color = "white";
#endif
#endif
}