-
I've been trying to mess around with custom css with the packager. Sadly, I can't figure out how it works. Can anyone show me some examples of how to use it? Maybe change the transparency of the variable boxes using it or something like that. |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 8 replies
-
The HTML for the monitors looks like You can use your browser's developer tools to find this and see which elements make which parts of the interface. For custom CSS the important part is .sc-monitor-root {
background-color: rgba(0, 0, 0, 0.5);
color: white;
} for example There are good places online to learn how to use CSS |
Beta Was this translation helpful? Give feedback.
-
I tried doing
to make the boxes transparent and remove the border, but it doesn't work. It works in chrome with inspect element, but now when exporting with the packager and the custom css. |
Beta Was this translation helpful? Give feedback.
-
that doens't seem to work when I package it into a Rasperry Pi app... |
Beta Was this translation helpful? Give feedback.
I tried doing
to make the boxes transparent and remove the border, but it doesn't work. It works in chrom…