Skip to content

Commit

Permalink
chore: v2.3.0
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
ssi02014 authored Feb 23, 2023
2 parents abd76d9 + eb236cc commit dbcb1f7
Show file tree
Hide file tree
Showing 11 changed files with 288 additions and 250 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,7 @@
- Download Thumbnail Image
- Resize Canvas
- Choose Background Color & Picture
- Choose Blur
- Choose Font Family & Size & Stroke & Color & Position & Angle
- Add Custom Web Font Family
- Select the Modal button and the location of the Modal.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-thumbnail-generator",
"version": "2.1.1",
"version": "2.3.0",
"description": "react-thumbnail-generator",
"main": "dist/index.js",
"module": "dist/index.js",
Expand Down
3 changes: 3 additions & 0 deletions src/assets/icons.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 10 additions & 2 deletions src/components/TG.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export const TGTextarea = styled.textarea`
}
`;

export const TGButtonContainer = styled.div`
export const TGButtonWrapper = styled.div`
display: flex;
justify-content: center;
align-items: center;
Expand Down Expand Up @@ -296,6 +296,10 @@ export const TGControllerWrapper = styled.div`
& > div + div {
margin-left: 10px;
}
& > div + button {
margin-left: 10px;
}
`;

export const TGIConButton = styled.button<{
Expand Down Expand Up @@ -376,7 +380,7 @@ export const SelectListItem = styled.li`
`;

// TG Input
export const TGInputTextContainer = styled.div<{ width?: number }>`
export const TGInputTextContainer = styled.div<{ width: number | string }>`
display: flex;
flex-direction: column;
justify-content: center;
Expand All @@ -401,6 +405,10 @@ export const TGInputTextContainer = styled.div<{ width?: number }>`
&:focus {
border: 1px solid #0e1b30;
}
&:disabled {
color: #cccccc;
}
}
`;

Expand Down
Loading

0 comments on commit dbcb1f7

Please sign in to comment.