-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #14 from nginformatica/feat/design-system-colors
Feat/design system colors
- Loading branch information
Showing
27 changed files
with
2,619 additions
and
4,347 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
/node_modules/ | ||
/docs | ||
.yalc/ | ||
yalc.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import { default as styled } from 'styled-components' | ||
import { theme } from 'flipper-ui/theme' | ||
|
||
const { gray, neutral, primary } = theme.colors | ||
|
||
export const Content = styled.div`` | ||
|
||
export const Flex = styled.div` | ||
display: flex; | ||
` | ||
|
||
export const FlexBetween = styled(Flex)` | ||
align-items: center; | ||
justify-content: space-between; | ||
` | ||
|
||
export const Wrapper = styled.div` | ||
position: absolute; | ||
top: 0; | ||
left: 0; | ||
width: 100%; | ||
min-height: 100vh; | ||
padding: 3.5rem; | ||
box-sizing: border-box; | ||
font-family: 'Roboto', sans-serif; | ||
background-color: ${neutral[100]}; | ||
` | ||
|
||
export const OrdenateList = styled.ol`` | ||
|
||
export const ListItems = styled.li` | ||
padding-bottom: 12px; | ||
` | ||
|
||
export const Description = styled.p` | ||
line-height: 24px; | ||
` | ||
|
||
export const ContentBold = styled.div` | ||
font-weight: 700; | ||
` | ||
|
||
export const ContainerTitle = styled(ContentBold)` | ||
font-size: 24px; | ||
color: ${gray[800]}; | ||
` | ||
|
||
export const ContainerContent = styled.div` | ||
font-size: 16px; | ||
color: ${gray[900]}; | ||
` | ||
|
||
export const FigmaRedirect = styled.a` | ||
text-decoration: none; | ||
font-size: 14px; | ||
color: ${primary.light}; | ||
transition: font-size 0.5s ease-in-out; | ||
&:hover { | ||
font-size: 15px; | ||
} | ||
` |
Oops, something went wrong.