diff --git a/src/components/Button/index.js b/src/components/Button/index.js
index 50c4ca09..7af93955 100644
--- a/src/components/Button/index.js
+++ b/src/components/Button/index.js
@@ -2,8 +2,8 @@ import React from "react";
import Link from '/src/components/Link';
import clsx from "clsx";
-export default function Button ({variant, href, className, size, target, title, icon, stretched, children, ...props}) {
- const btnClassName = clsx(`btn`, className, size && `btn-${size}`, stretched && `stretched-link position-static`);
+export default function Button ({variant, href, className, size, target, title, icon, stretched, align, children, ...props}) {
+ const btnClassName = clsx(`btn`, className, size && `btn-${size}`, stretched && `stretched-link position-static`, align === 'left' && `d-flex w-fit`, align === 'center' && `d-flex w-fit mx-auto`, align === 'right' && `d-flex w-fit ms-auto`)
// will start with exactly one slash, and that anything else is external.
const Icon = () => {
return icon && (
diff --git a/src/pages/components.md b/src/pages/components.md
index a2981c19..28558081 100644
--- a/src/pages/components.md
+++ b/src/pages/components.md
@@ -642,6 +642,7 @@ description="Get an API key & make your first API call in minutes. Get an API ke
## Buttons
+By deffault, button acts as inline element.
- **Code**
```jsx
@@ -651,6 +652,26 @@ description="Get an API key & make your first API call in minutes. Get an API ke
```
Default , small , and large buttons for different use cases.
+#### Align Button
+You can align the button to the left, center, or right. With align option button acts as a block element.
+
+- **Code**
+
+```jsx
+
+
+
+```
+- **Render**
+
+
+
+
+
+
+
+
+
## Badges
Badges based on [shields.io](https://shields.io/)
diff --git a/src/scss/base/_content.scss b/src/scss/base/_content.scss
index 84c16775..36ab2ed2 100644
--- a/src/scss/base/_content.scss
+++ b/src/scss/base/_content.scss
@@ -168,6 +168,11 @@ ul{
p > img:last-child{
margin-bottom: 0;
}
+
+ .btn.w-fit + .btn.w-fit{
+ margin-top: 12px;
+ }
+
& > :first-child {
margin-top: 0;
}
diff --git a/src/scss/base/_utils.scss b/src/scss/base/_utils.scss
index 7c4e36b5..6516deb0 100644
--- a/src/scss/base/_utils.scss
+++ b/src/scss/base/_utils.scss
@@ -126,6 +126,7 @@ $utilities: map-merge(
50: 50%,
75: 75%,
100: 100%,
+ fit: fit-content,
auto: auto
)
),