diff --git a/CHANGELOG.md b/CHANGELOG.md index 54a7b41..e5475c6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format Please take a look at [this section](https://keepachangelog.com/en/1.0.0/#how) on guidelines for writing a Changelog. +## Release v1.0.2 (2020-12-29) + +### Changed in [1.0.2] + - **Additions** + - Added disabled class for buttons [(#63)](https://github.com/ClearTax/littlegiant/pull/63) + ## Release v1.0.1 (2020-12-17) ### Changed in [1.0.1] diff --git a/src/components/Button/button.css b/src/components/Button/button.css index 242e0bb..5c0d3ee 100644 --- a/src/components/Button/button.css +++ b/src/components/Button/button.css @@ -2,6 +2,11 @@ .lil-btn { @apply lil-inline-flex lil-py-3 lil-px-6 lil-rounded-lg lil-text-center lil-justify-center lil-items-center lil-font-bold; } + +.lil-btn-disabled { + @apply lil-opacity-50 lil-pointer-events-none; +} + .lil-btn-blue { @apply lil-bg-blue-350 lil-text-white; }