choigirang / portfolio

포트폴리오 v1
https://v1.choigirang-portfolio.site
0 stars 0 forks source link

Style: 모드에 따른 스타일 적용 #6

Open choigirang opened 8 months ago

choigirang commented 8 months ago
const Header = MuiStyled('div')<HeaderScrollState>(({ theme, $scroll }) => ({
  display: 'flex',
  position: 'fixed',
  top: 0,
  justifyContent: 'space-between',
  alignItems: 'center',
  width: '100%',
  height: '100px',
  padding: '0 calc((100vw - 1280px) / 2)',
  backgroundColor: $scroll
    ? 'transparent'
    : theme.palette.mode === 'dark'
      ? theme.palette.secondary.dark
      : theme.palette.secondary.main,
  color: theme.palette.mode === 'dark' ? 'white' : 'white',
  boxSizing: 'border-box',
  transition: 'all 1s',
  zIndex: 1,

  '.visited': {
    fontWeight: '500',
    color: theme.palette.mode === 'dark' ? theme.palette.primary.dark : theme.palette.primary.light,
  },
}));