frontend/smart-hut/src/components/dashboard/devices/SwitchStyle.js

26 lines
447 B
JavaScript
Raw Normal View History

2020-03-17 16:38:03 +00:00
export const imageStyle = {
width: "2rem",
2020-03-17 16:38:03 +00:00
height: "auto",
position: "absolute",
top: "5%",
2020-03-17 16:38:03 +00:00
left: "50%",
transform: "translateX(-50%)",
};
export const nameStyle = {
2020-03-23 20:24:17 +00:00
color: "black",
2020-03-17 16:38:03 +00:00
position: "absolute",
top: "30%",
2020-03-17 16:38:03 +00:00
left: "50%",
2020-03-23 20:24:17 +00:00
transform: "translateX(-50%)",
2020-03-17 16:38:03 +00:00
};
2020-03-25 15:04:02 +00:00
export const turnedOnStyle = {
color: "white",
fontSize: "1.3rem",
position: "absolute",
top: "20%",
left: "50%",
2020-03-25 16:20:53 +00:00
transform: "translateX(-50%)",
};