Fix floating of buttons on login screen & made border radius equal

This commit is contained in:
Fabian Laule
2015-06-21 16:39:04 +02:00
parent 986fb4c588
commit d207a2eeeb
4 changed files with 5 additions and 4 deletions
File diff suppressed because one or more lines are too long
+1 -1
View File
@@ -1,4 +1,4 @@
{ {
"dist/css/all.css": "dist/css/all-cf88d8d0.css", "dist/css/all.css": "dist/css/all-339cb4f6.css",
"dist/js/all.js": "dist/js/all-dc1fd878.js" "dist/js/all.js": "dist/js/all-dc1fd878.js"
} }
+1
View File
@@ -41,6 +41,7 @@ body.login {
&.btn-trans { &.btn-trans {
background-color: transparent; background-color: transparent;
border: 1px solid white; border: 1px solid white;
border-radius: 4px;
color: white; color: white;
&:hover { &:hover {
+2 -2
View File
@@ -39,14 +39,14 @@
</div> </div>
<div class="form-group"> <div class="form-group">
<div class="row"> <div class="row">
<div class="col-md-2"> <div class="col-xs-2">
<a class="btn btn-white btn-trans" href="{{ route('status-page') }}"> <a class="btn btn-white btn-trans" href="{{ route('status-page') }}">
<span class="text-center"> <span class="text-center">
<i class="ion-home"></i> <i class="ion-home"></i>
</span> </span>
</a> </a>
</div> </div>
<div class="col-md-10"> <div class="col-xs-10">
<button type="submit" class="btn btn-lg btn-block btn-white btn-trans">{{ trans('dashboard.login.login') }}</button> <button type="submit" class="btn btn-lg btn-block btn-white btn-trans">{{ trans('dashboard.login.login') }}</button>
</div> </div>
</div> </div>