Files

80 lines
785 B
JavaScript
Raw Permalink Normal View History

2025-12-25 11:16:59 +01:00
export default class gridView{
display = "table";
layers = 1;
fontSize = 12;
borderCollapse = "separate";
borderSpacing = "0";
borderRadius = 12;
overflow = "hidden";
#ifdef WINDOWS
margin = 30;
borderRadius = 4;
#ifdef DARK
background = "#202020"
color = "white"
#endif
#ifdef LIGHT
#endif
#endif
#ifdef MACOS
margin = 2;
borderRadius = 4;
#ifdef DARK
color = "white"
border = "1px solid #4f4f4f"
#endif
#ifdef LIGHT
border = "1px solid rgb(0 0 0 / 5%)"
#endif
#endif
#ifdef ANDROID
#ifdef LIGHT
background = "white";
#endif
#endif
propegateEvent = false;
}