diff options
| author | ysds <[email protected]> | 2018-03-13 02:29:45 +0900 |
|---|---|---|
| committer | XhmikosR <[email protected]> | 2018-03-12 19:29:45 +0200 |
| commit | 5b0e40b62526f576e5f8a3877a7e63a2ed084685 (patch) | |
| tree | b725a11d7fda41b3dc20c32938399191db8686c2 /docs/4.0/examples/cover | |
| parent | 27f553c9651dbe81a8aaf821aa2bf15670d9adb8 (diff) | |
| download | bootstrap-5b0e40b62526f576e5f8a3877a7e63a2ed084685.tar.xz bootstrap-5b0e40b62526f576e5f8a3877a7e63a2ed084685.zip | |
Fix examples' issues #25664 and #25388 (#25665)
* Prevent sign-in form from going outside viewport (#25388)
* Workaround IE centering bug
Diffstat (limited to 'docs/4.0/examples/cover')
| -rw-r--r-- | docs/4.0/examples/cover/cover.css | 3 | ||||
| -rw-r--r-- | docs/4.0/examples/cover/index.html | 2 |
2 files changed, 1 insertions, 4 deletions
diff --git a/docs/4.0/examples/cover/cover.css b/docs/4.0/examples/cover/cover.css index ebf135f5c..108db2235 100644 --- a/docs/4.0/examples/cover/cover.css +++ b/docs/4.0/examples/cover/cover.css @@ -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); diff --git a/docs/4.0/examples/cover/index.html b/docs/4.0/examples/cover/index.html index 9a641b15b..0a0effca5 100644 --- a/docs/4.0/examples/cover/index.html +++ b/docs/4.0/examples/cover/index.html @@ -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> |
