Skip to content

Commit

Permalink
feat: add border radius
Browse files Browse the repository at this point in the history
  • Loading branch information
KnowsCount committed Feb 9, 2022
1 parent e74779c commit 2b74a07
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 7 deletions.
22 changes: 19 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
node_modules/
*.tgz
.DS_*

# build
dist
.DS_Store
storybook-static
*.tgz

# storybook
storybook-static

# logs & backups
*.log
**/*.backup.*
**/*.back.*

# yarn v2
.yarn/cache
.yarn/unplugged
.yarn/build-state.yml
.yarn/install-state.gz
.pnp.*
4 changes: 4 additions & 0 deletions src/Heatmap.css
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,10 @@
grid-auto-columns: var(--square-size);
}

.squares li {
border-radius: 3px;
}


/* Other styling */

Expand Down
8 changes: 4 additions & 4 deletions src/Heatmap.stories.tsx
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import React from 'react'
import Heatmap from './Heatmap'
// import { ContributionHeatmap } from './index'
// import Heatmap from './Heatmap'
import { ContributionHeatmap } from './index'

export default {
title: 'Example/Heatmap',
component: Heatmap,
component: ContributionHeatmap,
}

export const Basic = () => <Heatmap />
export const LightMode = () => <ContributionHeatmap />

1 comment on commit 2b74a07

@vercel
Copy link

@vercel vercel bot commented on 2b74a07 Feb 9, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.