From 7c72001269a3d60aa44c3c11a03b2d7dffe4a097 Mon Sep 17 00:00:00 2001 From: Taylor Seamans Date: Mon, 10 Oct 2022 15:10:28 -0700 Subject: [PATCH] Fix label color of feedback button (#2959) * Fix label color of feedback button * update yarn.lock --- .../src/components/feedback/FeedbackButton.js | 29 ++- aries-site/src/layouts/main/Layout.js | 62 ++--- yarn.lock | 211 +++++++++--------- 3 files changed, 158 insertions(+), 144 deletions(-) diff --git a/aries-site/src/components/feedback/FeedbackButton.js b/aries-site/src/components/feedback/FeedbackButton.js index b9690fa12..7e17c40a3 100644 --- a/aries-site/src/components/feedback/FeedbackButton.js +++ b/aries-site/src/components/feedback/FeedbackButton.js @@ -1,15 +1,32 @@ -import styled from 'styled-components'; +import { useContext } from 'react'; +import styled, { ThemeContext } from 'styled-components'; +import PropTypes from 'prop-types'; import { Box, Button } from 'grommet'; const PositionedBox = styled(Box)` position: fixed; bottom: 0px; + border-radius: 6px; right: 0px; z-index: 10; `; -export const FeedbackButton = ({ elevation, margin, ...buttonProps }) => ( - -