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.

StatisticDetails.styled.js 780B

123456789101112131415161718192021222324252627282930
  1. import { Box, Grid } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../../themes";
  4. export const HeaderDetails = styled(Box)`
  5. background-color: ${selectedTheme.primaryIconBackgroundColor};
  6. `;
  7. export const BottomDetails = styled(Box)`
  8. max-width: fit-content;
  9. display: grid;
  10. grid-template-columns: repeat(2, 1fr);
  11. grid-template-rows: repeat(2, 1fr);
  12. grid-column-gap: 12px;
  13. grid-row-gap: 12px;
  14. padding: 18px;
  15. @media (max-width: 600px) {
  16. display: flex;
  17. flex-direction: column;
  18. }
  19. `;
  20. export const StatusText = styled(Grid)`
  21. font-family: "Open Sans";
  22. color: ${selectedTheme.primaryText};
  23. @media (max-width: 600px) {
  24. font-size: 12px;
  25. }
  26. `;
  27. export const StatusValue = styled.b`
  28. font-weight: bold;
  29. `