Skip to content

Commit

Permalink
1st stable version v0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kavindu-mane committed May 4, 2024
1 parent c20795a commit e0bbb72
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ Now you can use both components like bellow.
_If you need change writer text color.add this line to your css file_
```css
--rms-writer-color: your color;
--rms-writer-color: your color !important;
```
</details>
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-magic-spinners",
"version": "0.0.1-beta.3",
"version": "0.1.0",
"description": "React Magic Spinners is a collection of loading spinners for React.js",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/climbing-box-loader/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ const ClimbingBoxLoader = ({
borderWidth: size / 5,
borderColor: color,
borderStyle: "solid",
marginBottom: (2 * size) / 5,
marginBottom: (size) / 5,
};

return (
Expand Down
1 change: 1 addition & 0 deletions src/grid-loader/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ const GridLoader = ({
className={`rms-grid-loader-wrapper ${className}`}
style={{
backgroundColor,
width:"fit-content",
gridTemplateColumns: `repeat(${columns}, 1fr)`,
gridTemplateRows: `repeat(${rows}, 1fr)`,
...style,
Expand Down

0 comments on commit e0bbb72

Please sign in to comment.