moonstream/frontend/src/Theme/MenuButton/index.js

27 wiersze
446 B
JavaScript
Czysty Zwykły widok Historia

2022-11-19 09:33:20 +00:00
const mobileVariant = () => {
return {
_active: {
2022-11-21 08:35:08 +00:00
backgroundColor: "black.300",
2022-11-19 09:33:20 +00:00
color: "white",
textDecoration: "none",
},
_focus: {
backgroundColor: "black.300",
color: "white",
textDecoration: "none",
},
color: "white",
fontSize: "sm",
margin: "0px",
padding: "0px",
};
};
const MenuButton = {
variants: {
mobile: mobileVariant,
},
};
export default MenuButton;