Skip to content
This repository has been archived by the owner on Oct 12, 2023. It is now read-only.

Commit

Permalink
fix(icon): fixed icon
Browse files Browse the repository at this point in the history
  • Loading branch information
juliankoehn committed Jul 31, 2020
1 parent 15b2871 commit 050dc78
Show file tree
Hide file tree
Showing 6 changed files with 26 additions and 13 deletions.
5 changes: 5 additions & 0 deletions packages/tokens/src/tokens/colors/colors-fill.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
const colorsFill = {
'fill-current': 'currentColor',
};

module.exports = colorsFill;
8 changes: 8 additions & 0 deletions packages/tokens/src/tokens/flex/flex.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
const flex = {
'flex-1': '1 1 0%',
'flex-auto': '1 1 auto',
'flex-initial': '0 1 auto',
'flex-none': 'none',
};

module.exports = flex;
6 changes: 6 additions & 0 deletions packages/tokens/src/tokens/flex/grow.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const flex = {
'flex-grow-0': '0',
'flex-grow': '1',
};

module.exports = flex;
6 changes: 6 additions & 0 deletions packages/tokens/src/tokens/flex/shrink.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
const flex = {
'flex-shrink-0': '0',
'flex-shrink': '1',
};

module.exports = flex;
12 changes: 0 additions & 12 deletions packages/website/gatsby-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,5 @@ module.exports = {
},
'gatsby-plugin-sharp',
'gatsby-plugin-emotion',
{
resolve: `gatsby-plugin-manifest`,
options: {
name: 'Ruis - Design System',
short_name: 'Ruis',
start_url: '/',
background_color: '#152233',
theme_color: '#152233',
display: 'minimal-ui',
icon: 'src/images/forma-icon.png', // This path is relative to the root of the site.
},
},
]
}
2 changes: 1 addition & 1 deletion packages/website/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@ruis/website",
"name": "ruis-website",
"description": "ruis documentation app",
"private": true,
"version": "0.0.0-dev",
Expand Down

0 comments on commit 050dc78

Please sign in to comment.