У меня возникли проблемы с «перестройкой» компонентов в Гэтсби с использованием styled-components
"styled-components": "^3.3.0"
"gatsby-plugin-styled-components": "^2.0.11"
У меня gatsby-plugin-styled-components
в моем gatsby-config
и стиль работает на панели всего, когда я снова добавляю пользовательский Компонент через styled()
, например:
У меня есть боковая панель, стилизованная здесь
import React, { Component } from "react";
import styled from "styled-components";
class Aside extends Component {
render() {
return (
<Sidebar>
<List>
<Item>Pintrest 1</Item>
<Item>Pintrest 2</Item>
<Item>Pintrest 3</Item>
</List>
</Sidebar>
);
}
}
const Sidebar = styled.div`
position: absolute;
width: 200px;
left: calc(100% + 20px);
@media (max-width: 1200px) {
position: relative;
width: 100%;
left: 0;
top: 0;
}
`;
На одной странице мне бы хотелосьиметь стиль top: 0;
, поэтому я передаю его через
const SideBar = styled(Aside)`
top: 0;
`;
.
import React from 'react'
import Helmet from 'react-helmet'
import Link from 'gatsby-link'
import get from 'lodash/get'
import styled from "styled-components";
import Bio from '../components/Bio'
import Aside from '../components/Aside';
class BlogPostTemplate extends React.Component {
render() {
const post = this.props.data.markdownRemark
const siteTitle = get(this.props, 'data.site.siteMetadata.title')
const { previous, next } = this.props.pathContext
return (
<div>
<Helmet title={`${post.frontmatter.title} | ${siteTitle}`} />
<Bio />
<Post>
<h1>{post.frontmatter.title}</h1>
<SideBar/>
</Post>
</div>
)
}
}
И даже пытался
const aside = ({className}) => <Aside className={className}/>;
const SideBar = styled(aside)`
top: 0;
`;
как показано
https://www.styled -components.com / docs / basics # styling-any-components
, но он не работает и не меняет стиль, является ли это ограничением для lib gatsby-plugin-styled-components
или styleled-компонент, или я неправильно понимаю цель styled-components