aboutsummaryrefslogtreecommitdiff
path: root/site/content/docs/5.1/examples/modals
diff options
context:
space:
mode:
authorJulien Déramond <[email protected]>2022-03-29 08:48:56 +0200
committerMark Otto <[email protected]>2022-03-31 14:00:10 -0700
commit16711ff5b12df1412e1d4957b64df811e9e3efe3 (patch)
treeda1659fd13402f5f4f1e6a806822dc2637903ba4 /site/content/docs/5.1/examples/modals
parentbef4f3b6c6d04ff8363ead0b1d9a88aad4b0a170 (diff)
downloadbootstrap-16711ff5b12df1412e1d4957b64df811e9e3efe3.tar.xz
bootstrap-16711ff5b12df1412e1d4957b64df811e9e3efe3.zip
Fix duplicate `.rounded-*` and `.fw-semibold` defs in examples
Diffstat (limited to 'site/content/docs/5.1/examples/modals')
-rw-r--r--site/content/docs/5.1/examples/modals/index.html20
1 files changed, 10 insertions, 10 deletions
diff --git a/site/content/docs/5.1/examples/modals/index.html b/site/content/docs/5.1/examples/modals/index.html
index cc0feff87..8043f2b44 100644
--- a/site/content/docs/5.1/examples/modals/index.html
+++ b/site/content/docs/5.1/examples/modals/index.html
@@ -57,7 +57,7 @@ body_class: ""
<div class="modal modal-sheet position-static d-block bg-secondary py-5" tabindex="-1" role="dialog" id="modalSheet">
<div class="modal-dialog" role="document">
- <div class="modal-content rounded-6 shadow">
+ <div class="modal-content rounded-4 shadow">
<div class="modal-header border-bottom-0">
<h5 class="modal-title">Modal title</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
@@ -77,7 +77,7 @@ body_class: ""
<div class="modal modal-alert position-static d-block bg-secondary py-5" tabindex="-1" role="dialog" id="modalChoice">
<div class="modal-dialog" role="document">
- <div class="modal-content rounded-4 shadow">
+ <div class="modal-content rounded-3 shadow">
<div class="modal-body p-4 text-center">
<h5 class="mb-0">Enable this setting?</h5>
<p class="mb-0">You can always change your mind in your account settings.</p>
@@ -94,7 +94,7 @@ body_class: ""
<div class="modal modal-tour position-static d-block bg-secondary py-5" tabindex="-1" role="dialog" id="modalTour">
<div class="modal-dialog" role="document">
- <div class="modal-content rounded-6 shadow">
+ <div class="modal-content rounded-4 shadow">
<div class="modal-body p-5">
<h2 class="fw-bold mb-0">What's new</h2>
@@ -131,7 +131,7 @@ body_class: ""
<div class="modal modal-signin position-static d-block bg-secondary py-5" tabindex="-1" role="dialog" id="modalSignin">
<div class="modal-dialog" role="document">
- <div class="modal-content rounded-5 shadow">
+ <div class="modal-content rounded-4 shadow">
<div class="modal-header p-5 pb-4 border-bottom-0">
<!-- <h5 class="modal-title">Modal title</h5> -->
<h2 class="fw-bold mb-0">Sign up for free</h2>
@@ -141,26 +141,26 @@ body_class: ""
<div class="modal-body p-5 pt-0">
<form class="">
<div class="form-floating mb-3">
- <input type="email" class="form-control rounded-4" id="floatingInput" placeholder="[email protected]">
+ <input type="email" class="form-control rounded-3" id="floatingInput" placeholder="[email protected]">
<label for="floatingInput">Email address</label>
</div>
<div class="form-floating mb-3">
- <input type="password" class="form-control rounded-4" id="floatingPassword" placeholder="Password">
+ <input type="password" class="form-control rounded-3" id="floatingPassword" placeholder="Password">
<label for="floatingPassword">Password</label>
</div>
- <button class="w-100 mb-2 btn btn-lg rounded-4 btn-primary" type="submit">Sign up</button>
+ <button class="w-100 mb-2 btn btn-lg rounded-3 btn-primary" type="submit">Sign up</button>
<small class="text-muted">By clicking Sign up, you agree to the terms of use.</small>
<hr class="my-4">
<h2 class="fs-5 fw-bold mb-3">Or use a third-party</h2>
- <button class="w-100 py-2 mb-2 btn btn-outline-dark rounded-4" type="submit">
+ <button class="w-100 py-2 mb-2 btn btn-outline-dark rounded-3" type="submit">
<svg class="bi me-1" width="16" height="16"><use xlink:href="#twitter"/></svg>
Sign up with Twitter
</button>
- <button class="w-100 py-2 mb-2 btn btn-outline-primary rounded-4" type="submit">
+ <button class="w-100 py-2 mb-2 btn btn-outline-primary rounded-3" type="submit">
<svg class="bi me-1" width="16" height="16"><use xlink:href="#facebook"/></svg>
Sign up with Facebook
</button>
- <button class="w-100 py-2 mb-2 btn btn-outline-secondary rounded-4" type="submit">
+ <button class="w-100 py-2 mb-2 btn btn-outline-secondary rounded-3" type="submit">
<svg class="bi me-1" width="16" height="16"><use xlink:href="#github"/></svg>
Sign up with GitHub
</button>