styled-component Flashcards

1
Q

styled-component

A

Установка: https://styled-components.com/docs/basics#installation

<NavWrapper><NavLink></NavLink></NavWrapper>

-стили применятся

Отдельный файл:
const NavWrapper = styled.div`
margin-left: 10px;
font-size: 20px;

& (вложенность 1 уровня NavWrapper) > a {
text-decoration: none;
color: blue;
}

& > a.action {
text-decoration: none;
color: green;
}

& > a::hover {
color: steelblue;
}
`
export const S = {
NavWrapper
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly