diff options
| author | XhmikosR <[email protected]> | 2020-11-17 16:00:45 +0200 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2020-11-19 07:47:06 +0200 |
| commit | ecbc7189b68e64dd32cbe9e080d83213b5717b6f (patch) | |
| tree | d1d92b15aedfb8f36930259070716d4984f79158 | |
| parent | 5501df0c294f8189f64a686b68d7dd45a803ee1c (diff) | |
| download | bootstrap-ecbc7189b68e64dd32cbe9e080d83213b5717b6f.tar.xz bootstrap-ecbc7189b68e64dd32cbe9e080d83213b5717b6f.zip | |
examples: fix `.btn-block` instances
| -rw-r--r-- | site/content/docs/5.0/examples/checkout/index.html | 2 | ||||
| -rw-r--r-- | site/content/docs/5.0/examples/pricing/index.html | 6 | ||||
| -rw-r--r-- | site/content/docs/5.0/examples/sign-in/index.html | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/site/content/docs/5.0/examples/checkout/index.html b/site/content/docs/5.0/examples/checkout/index.html index bc7db1769..a8bf348b2 100644 --- a/site/content/docs/5.0/examples/checkout/index.html +++ b/site/content/docs/5.0/examples/checkout/index.html @@ -215,7 +215,7 @@ body_class: "bg-light" <hr class="my-4"> - <button class="btn btn-primary btn-lg btn-block" type="submit">Continue to checkout</button> + <button class="w-100 btn btn-primary btn-lg" type="submit">Continue to checkout</button> </form> </div> </div> diff --git a/site/content/docs/5.0/examples/pricing/index.html b/site/content/docs/5.0/examples/pricing/index.html index bcd69005d..d9d8e7e52 100644 --- a/site/content/docs/5.0/examples/pricing/index.html +++ b/site/content/docs/5.0/examples/pricing/index.html @@ -37,7 +37,7 @@ include_js: false <li>Email support</li> <li>Help center access</li> </ul> - <button type="button" class="btn btn-lg btn-block btn-outline-primary">Sign up for free</button> + <button type="button" class="w-100 btn btn-lg btn-outline-primary">Sign up for free</button> </div> </div> </div> @@ -54,7 +54,7 @@ include_js: false <li>Priority email support</li> <li>Help center access</li> </ul> - <button type="button" class="btn btn-lg btn-block btn-primary">Get started</button> + <button type="button" class="w-100 btn btn-lg btn-primary">Get started</button> </div> </div> </div> @@ -71,7 +71,7 @@ include_js: false <li>Phone and email support</li> <li>Help center access</li> </ul> - <button type="button" class="btn btn-lg btn-block btn-primary">Contact us</button> + <button type="button" class="w-100 btn btn-lg btn-primary">Contact us</button> </div> </div> </div> diff --git a/site/content/docs/5.0/examples/sign-in/index.html b/site/content/docs/5.0/examples/sign-in/index.html index 7ad6b41c7..ac5b6104b 100644 --- a/site/content/docs/5.0/examples/sign-in/index.html +++ b/site/content/docs/5.0/examples/sign-in/index.html @@ -20,7 +20,7 @@ include_js: false <input type="checkbox" value="remember-me"> Remember me </label> </div> - <button class="btn btn-lg btn-primary btn-block" type="submit">Sign in</button> + <button class="w-100 btn btn-lg btn-primary" type="submit">Sign in</button> <p class="mt-5 mb-3 text-muted">© 2017-{{< year >}}</p> </form> </main> |
