-
Notifications
You must be signed in to change notification settings - Fork 178
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
Showing
2 changed files
with
30 additions
and
28 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,37 @@ | ||
import { css } from 'styled-components' | ||
|
||
import { COLORS } from '.' | ||
|
||
export const borderRadius2 = '2px' // WEB ONLY! | ||
export const borderRadius4 = '4px' | ||
export const borderRadius8 = '8px' | ||
export const borderRadius12 = '12px' | ||
export const borderRadius16 = '16px' | ||
export const borderRadius40 = '40px' | ||
export const borderRadiusFull = '200px' | ||
|
||
export const styleSolid = 'solid' | ||
|
||
export const tabBorder = css` | ||
border-bottom-style: ${styleSolid}; | ||
border-bottom-width: 2px; | ||
border-bottom-color: ${COLORS.purple50}; | ||
` | ||
|
||
export const activeLineBorder = `1px ${styleSolid} ${COLORS.blue50}` | ||
export const lineBorder = `1px ${styleSolid} ${COLORS.grey30}` | ||
export const cardOutlineBorder = css` | ||
border-style: ${styleSolid}; | ||
border-width: 1px; | ||
border-color: ${COLORS.grey30}; | ||
border-radius: ${borderRadius4}; | ||
&:hover { | ||
border-color: ${COLORS.grey55}; | ||
} | ||
` | ||
|
||
export const smallDropShadow = '0px 3px 6px rgba(0, 0, 0, 0.23)' | ||
|
||
// touch screen | ||
export const shadowBig = '0px 3px 6px rgba(0,0,0,0.23)' | ||
export const shadowSmall = '0px 0px 40px rgba(0,0,0,0.4)' |
This file was deleted.
Oops, something went wrong.