You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

NotAllowedChat.styled.js 562B

123456789101112131415161718
  1. import { Box, Typography } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../../themes";
  4. export const NotAllowedChatText = styled(Typography)`
  5. font-family: ${selectedTheme.fonts.textFont};
  6. font-weight: 700;
  7. font-size: 16px;
  8. line-height: 21px;
  9. text-align: center;
  10. color: ${selectedTheme.colors.primaryPurple};
  11. `;
  12. export const NotAllowedChatContainer = styled(Box)`
  13. text-align: center;
  14. border-top: 1px solid ${selectedTheme.colors.messageBackground};
  15. margin: 0 36px;
  16. padding-top: 30px;
  17. `