diff --git a/src/components/index/ActionButtons.js b/src/components/index/ActionButtons.js index f8d0ad4..db365c3 100644 --- a/src/components/index/ActionButtons.js +++ b/src/components/index/ActionButtons.js @@ -5,43 +5,54 @@ import { Link } from "gatsby"; const getButtonClasses = (isClient) => classnames( "z-20 rounded-md text-md inline-block px-2 py-1 mt-1 md:py-2 md:px-3 md:my-1 mr-2 text-md hover:underline", - isClient - ? 'text-muted-light bg-muted-dark hover:bg-muted blurred-or-opaque-bg-2' - : 'text-gray-200' + isClient + ? "text-muted-light bg-muted-dark hover:bg-muted blurred-or-opaque-bg-2" + : "text-gray-200" ); const ActionButtons = ({ isClient, image, shuffleImage }) => ( -