-
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.
- Loading branch information
1 parent
4faa687
commit b507d9c
Showing
8 changed files
with
115 additions
and
66 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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,5 @@ | ||
export const green = '#92EEC4' | ||
export const blue = '#85DAEF' | ||
export const lightblue = '#8EEEEF' | ||
export const black = '#242729' | ||
export const lightblack = '#848d95' |
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,5 @@ | ||
export default [ | ||
'box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.7)', | ||
'box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24)', | ||
'box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23)', | ||
] |
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,27 @@ | ||
import {css} from 'styled-components' | ||
|
||
export const fixed = ({ | ||
x = 0, | ||
y = 0, | ||
yProp = 'top', | ||
xProp = 'left' | ||
} = {}) => { | ||
return css` | ||
position: fixed; | ||
${yProp}: ${y}; | ||
${xProp}: ${x}; | ||
`; | ||
} | ||
|
||
export const absolute = ({ | ||
x = 0, | ||
y = 0, | ||
yProp = 'top', | ||
xProp = 'left' | ||
} = {}) => { | ||
return css` | ||
position: absolute; | ||
${yProp}: ${y}; | ||
${xProp}: ${x}; | ||
`; | ||
} |
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 +1,7 @@ | ||
export * from './Breakpoints' | ||
import elevation from './Elevation' | ||
|
||
export * from './Breakpoints' | ||
export * from './Colors' | ||
export * from './Position' | ||
|
||
export {elevation}; |