-
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 #30 from ssi02014/dev
�v2.7.1
- Loading branch information
Showing
21 changed files
with
169 additions
and
121 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
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
File renamed without changes.
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,32 @@ | ||
import styled from 'styled-components'; | ||
|
||
export const FileInputWrapper = styled.div` | ||
background: #fff; | ||
border-radius: 5px; | ||
display: flex; | ||
align-items: center; | ||
justify-content: center; | ||
cursor: pointer; | ||
border: 1px solid #cccccc; | ||
padding: 4px 5px; | ||
label { | ||
cursor: pointer; | ||
margin: 0; | ||
width: 20px; | ||
height: 20px; | ||
img { | ||
width: 100%; | ||
height: 100%; | ||
} | ||
} | ||
input { | ||
display: none; | ||
} | ||
&:hover { | ||
border: 1px solid #0e1b30; | ||
} | ||
`; |
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,36 @@ | ||
import styled from 'styled-components'; | ||
|
||
// TG Input | ||
export const TextInputWrapper = styled.div<{ width: number | string }>` | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: center; | ||
height: 50px; | ||
label { | ||
font-size: 0.7rem; | ||
color: #969696; | ||
height: 16px; | ||
line-height: 17px; | ||
} | ||
input { | ||
border: 1px solid #cccccc; | ||
border-radius: 5px; | ||
padding: 6px 12px; | ||
font-size: 0.9rem; | ||
outline: none; | ||
margin-top: 1px; | ||
width: ${({ width }) => `${width}px`}; | ||
&:focus, | ||
&:hover { | ||
border: 1px solid #0e1b30; | ||
} | ||
&:disabled { | ||
color: #cccccc; | ||
border: 1px solid #cccccc; | ||
} | ||
} | ||
`; |
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
Oops, something went wrong.