Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

AboutHeader.styled.js 865B

12345678910111213141516171819202122232425262728293031323334
  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. @media (min-width: 900px) and (max-width: 1200px) {
  14. margin-right: -250px;
  15. }
  16. `;
  17. export const LinkRoute = styled(Link)`
  18. text-decoration: none;
  19. font-family: ${selectedTheme.fonts.textFont};
  20. font-weight: ${(props) => (props.selected ? "600" : "400")};
  21. font-size: 16px;
  22. line-height: 22px;
  23. letter-spacing: 0.02em;
  24. border-bottom: 0px solid ${selectedTheme.iconYellowColor};
  25. &:hover {
  26. border-bottom: 1px solid ${selectedTheme.colors.iconYellowColor};
  27. }
  28. @media (max-width: 600px) {
  29. display: none;
  30. }
  31. `;