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.

AboutHeader.styled.js 722B

1234567891011121314151617181920212223242526
  1. import { Box } from "@mui/material";
  2. import styled from "styled-components";
  3. import selectedTheme from "../../../themes";
  4. import Link from "../../Link/Link";
  5. export const AboutHeaderContainer = styled(Box)`
  6. flex: 5;
  7. z-index: 3000;
  8. display: flex;
  9. color: black;
  10. flex-direction: row;
  11. justify-content: center;
  12. gap: 36px;
  13. `;
  14. export const LinkRoute = styled(Link)`
  15. text-decoration: none;
  16. font-family: ${selectedTheme.fonts.textFont};
  17. font-weight: ${props => props.selected ? "600" : "400"};
  18. font-size: 16px;
  19. line-height: 22px;
  20. letter-spacing: 0.02em;
  21. border-bottom: 0px solid ${selectedTheme.iconYellowColor};
  22. &:hover {
  23. border-bottom: 1px solid ${selectedTheme.colors.iconYellowColor};
  24. }
  25. `;