Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix examples' issues #25664 and #25388 #25665

Merged
merged 3 commits into from
Mar 12, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions docs/4.0/examples/cover/cover.css
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,6 @@ body {
display: -ms-flexbox;
display: -webkit-box;
display: flex;
-ms-flex-pack: center;
-webkit-box-pack: center;
justify-content: center;
color: #fff;
text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .5);
box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
Expand Down
2 changes: 1 addition & 1 deletion docs/4.0/examples/cover/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

<body class="text-center">

<div class="cover-container d-flex h-100 p-3 mx-auto flex-column">
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
<header class="masthead mb-auto">
<div class="inner">
<h3 class="masthead-brand">Cover</h3>
Expand Down
5 changes: 1 addition & 4 deletions docs/4.0/examples/floating-labels/floating-labels.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,8 @@ body {
display: -webkit-box;
display: flex;
-ms-flex-align: center;
-ms-flex-pack: center;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
Expand All @@ -27,7 +24,7 @@ body {
width: 100%;
max-width: 420px;
padding: 15px;
margin: 0 auto;
margin: auto;
}

.form-label-group {
Expand Down
5 changes: 1 addition & 4 deletions docs/4.0/examples/sign-in/signin.css
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,8 @@ body {
display: -webkit-box;
display: flex;
-ms-flex-align: center;
-ms-flex-pack: center;
-webkit-box-align: center;
align-items: center;
-webkit-box-pack: center;
justify-content: center;
padding-top: 40px;
padding-bottom: 40px;
background-color: #f5f5f5;
Expand All @@ -22,7 +19,7 @@ body {
width: 100%;
max-width: 330px;
padding: 15px;
margin: 0 auto;
margin: auto;
}
.form-signin .checkbox {
font-weight: 400;
Expand Down