Message Styling For Mobile

Decreased padding for mobile and changed some styling to give better contrast
This commit is contained in:
rsandb
2023-01-13 19:57:46 -06:00
parent af8f17a55c
commit eb0988bee9
10 changed files with 81 additions and 51 deletions
+2 -2
View File
@@ -6,13 +6,13 @@ interface SurveyCardProps {
}
export const SurveyCard = (props: SurveyCardProps) => {
const backgroundColor = useColorModeValue("white", "gray.800");
const backgroundColor = useColorModeValue("white", "gray.700");
const BoxClasses: BoxProps = {
p: "6",
gap: "2",
borderRadius: "xl",
shadow: "base",
className: "p-4 sm:p-6",
};
return (