使用带有gatsbyJS的样式组件

时间:2017-10-19 14:57:00

标签: css reactjs serverside-rendering styled-components gatsby

我正在使用gatsby-plugin-styled-components来设计下面的元素。

import React from 'react';
import styled from 'styled-components';


const secondChar = styled.span`
  font-size: 3em;
  color: azure;
`

const TitleWrapper = styled.div`
  font-size: 3.5em;
  font-weight: 100;
  letter-spacing: 0.01em;
  font-family: 'Covered By Your Grace', cursive;
`

const Title = () => (
  <TitleWrapper>
    <span>a</span>
    <secondChar>b</secondChar>
    <span>c</span>
    <span>e</span>
    <span>f</span>
    <span>g</span>
    <span>h</span>
  </TitleWrapper>
)

export default Title;

出于某些原因,我根本无法弄明白自己,我无法设置第二个辅助组件的样式。颜色和字体大小根本没有变化。 但是,我可以通过Chrome Dev Tool设置secondChar的样式。

任何人都可以告知发生了什么事? 谢谢。

更新: 解决了上面的第一个问题。忘了使用camelcase作为组件。

现在我正在尝试实施以下内容 Styled-components: refering to other components

const SecondChar = styled.span`
  display: inline-block;
  transform: translateX(20px);
  transition: transform 500ms ease-in-out;
  ${TitleWrapper}:hover & {
    color: azure;
  }
`

const TitleWrapper = styled.div`
  font-size: 3.5em;
  font-weight: 100;
  letter-spacing: 0.01em;
  font-family: 'Covered By Your Grace', cursive;
`

const Title = () => (
  <TitleWrapper>
    <span>a</span>
    <SecondChar>b</SecondChar>
    <span>c</span>
    <span>d</span>
    <span>e</span>
    <span>f</span>
    <span>g</span>
  </TitleWrapper>
)

然而,悬停在TitleWrapper上并没有对SecondChar组件做出任何响应。我又做错了吗?

1 个答案:

答案 0 :(得分:6)

所有组件命名都应以大写字母开头,包括样式化组件,因此secondChar应为SecondChar