diff --git a/docs/content/components/buttons.md b/docs/content/components/buttons.md index b124b36295..c0719ea400 100644 --- a/docs/content/components/buttons.md +++ b/docs/content/components/buttons.md @@ -59,7 +59,7 @@ Use `.btn-large` to increase the padding and border radius of a button. This is ```html live

- Large link button + Large link button

``` @@ -68,7 +68,7 @@ Use `.btn-large` with a type scale utility to transform the text to a bigger siz ```html live

- Large link button + Large link button

``` diff --git a/src/buttons/button.scss b/src/buttons/button.scss index e5caa67bc8..d572b29a85 100644 --- a/src/buttons/button.scss +++ b/src/buttons/button.scss @@ -60,8 +60,6 @@ .btn { @include btn-solid($text-gray-dark, $gray-000, darken($gray-100, 2%)); } .btn-primary { @include btn-solid($text-white, $green-400, $green-500); } -@warn ".btn-purple will be removed in 13.0.0. Please don't make buttons purple."; -.btn-purple { @include btn-solid($text-white, lighten($purple-500, 5%), darken($purple-500, 5%)); } .btn-blue { @include btn-solid($text-white, lighten($blue-500, 8%), darken($blue-500, 2%)); } .btn-danger { @include btn-inverse($red-600, $gray-000, darken($gray-100, 2%)); }