Skip to content

Commit

Permalink
Merge branch 'dev' into feat/#18
Browse files Browse the repository at this point in the history
  • Loading branch information
SeojinSeojin committed Jan 8, 2022
2 parents d81c7e3 + 5447bfb commit ffb99e7
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
14 changes: 14 additions & 0 deletions src/presentation/style/common/button.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { css } from 'styled-components';
import { COLOR } from '@styles/common/color';

export const CORAL_MAIN_BUTTON = css`
background-color: ${COLOR.CORAL_MAIN};
color: ${COLOR.WHITE};
`;

export const FULL_WIDTH_BUTTON = css`
width: 100%;
height: 58px;
border-radius: 14px;
font-size: 16px;
`;
1 change: 1 addition & 0 deletions tsconfig.paths.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
"@components/*": ["src/presentation/components/*"],
"@routes/*": ["src/presentation/routes/*"],
"@pages/*": ["src/presentation/pages/*"],
"@styles/*": ["src/presentation/style/*"],
"@utils/*": ["src/application/utils/*"],
"@models/*": ["src/application/models/*"],
"@stores/*": ["src/application/stores/*"],
Expand Down

0 comments on commit ffb99e7

Please sign in to comment.