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

27 lines
516 B
JavaScript
Raw Normal View History

export const energyConsumedStyle = {
2020-03-23 20:24:17 +00:00
color: "black",
fontSize: "1.3rem",
position: "absolute",
top: "30%",
left: "50%",
transform: "translateX(-50%)",
};
export const imageStyle = {
2020-03-23 20:24:17 +00:00
width: "3.5rem",
height: "auto",
position: "absolute",
top: "10%",
left: "50%",
transform: "translateX(-50%)",
filter: "drop-shadow( 1px 1px 0.5px rgba(0, 0, 0, .25))",
};
2020-03-17 16:38:03 +00:00
export const nameStyle = {
2020-03-23 20:24:17 +00:00
color: "black",
position: "absolute",
top: "50%",
left: "50%",
transform: "translateX(-50%)",
2020-03-17 16:38:03 +00:00
};