bug fix
This commit is contained in:
parent
183fba865d
commit
7ecfd8017c
|
|
@ -24,6 +24,6 @@ class AppServiceProvider extends ServiceProvider
|
|||
*/
|
||||
public function boot()
|
||||
{
|
||||
URL::forceScheme('https');
|
||||
// URL::forceScheme('https');
|
||||
}
|
||||
}
|
||||
|
|
|
|||
1
public/css/admin-employees.css
vendored
1
public/css/admin-employees.css
vendored
|
|
@ -112,6 +112,7 @@ table {
|
|||
border-spacing: 0;
|
||||
min-width: 90%;
|
||||
max-width: 90%;
|
||||
font-size: 15px;
|
||||
}
|
||||
|
||||
table tr th,
|
||||
|
|
|
|||
10
public/css/index.css
vendored
10
public/css/index.css
vendored
|
|
@ -6,13 +6,13 @@
|
|||
body {
|
||||
margin: 0 auto;
|
||||
padding: .5rem;
|
||||
/* background-color: #0c0d10; */
|
||||
background-color: #ffffff;
|
||||
|
||||
}
|
||||
|
||||
/* body:active{
|
||||
background-color: #0f1113;
|
||||
} */
|
||||
body:active{
|
||||
background-color: #ffffff;
|
||||
}
|
||||
|
||||
#logo {
|
||||
margin-top: 5rem;
|
||||
|
|
@ -58,7 +58,7 @@ input:autofill, -webkit-autofill, :focus, :active {
|
|||
-webkit-background-clip: text;
|
||||
}
|
||||
|
||||
.form-control, :active{
|
||||
.form-control {
|
||||
position: absolute;
|
||||
margin: .25rem 2rem auto;
|
||||
height: 1.75rem;
|
||||
|
|
|
|||
12
public/css/login.css
vendored
12
public/css/login.css
vendored
|
|
@ -1,3 +1,6 @@
|
|||
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;700&display=swap');
|
||||
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;1,200;1,400;1,600&display=swap');
|
||||
|
||||
#logo-image {
|
||||
height: auto;
|
||||
margin: 0 auto;
|
||||
|
|
@ -60,6 +63,15 @@ input:focus {
|
|||
background-color: rgb(112,174,199);
|
||||
}
|
||||
|
||||
#disclaimer-row {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
left: 0;
|
||||
color: rgb(0, 0, 0);
|
||||
font-size: .8rem;
|
||||
}
|
||||
|
||||
|
||||
@media screen and (min-width: 1025px){
|
||||
#logo {
|
||||
margin: 5% auto;
|
||||
|
|
|
|||
6
public/css/pbx.css
vendored
6
public/css/pbx.css
vendored
|
|
@ -183,8 +183,9 @@ svg.bi.bi-dash-circle:hover {
|
|||
}
|
||||
|
||||
svg.bi.bi-dash-circle {
|
||||
position: relative;
|
||||
left: 50%;
|
||||
position: absolute;
|
||||
left: 90%;
|
||||
top: 18%;
|
||||
}
|
||||
|
||||
.confirm-icon {
|
||||
|
|
@ -213,6 +214,7 @@ svg.bi.bi-dash-circle {
|
|||
background: none;
|
||||
border: none;
|
||||
padding: 0rem;
|
||||
margin-top: 27px;
|
||||
}
|
||||
|
||||
.card-name {
|
||||
|
|
|
|||
|
|
@ -118,23 +118,6 @@
|
|||
</svg>
|
||||
</button>
|
||||
|
||||
{{-- <form method="POST" action={{ action('App\Http\Controllers\PBXController@disable') }} enctype="multipart/form-data">
|
||||
@csrf
|
||||
@method('post')
|
||||
|
||||
<div class="input-group" id="disable-pbx">
|
||||
<input type="hidden" class="form-control" id="disable" name="disable" value="{{$pin->email}}"/>
|
||||
<div class="input-group-append">
|
||||
<button class="hidden-button" type="submit">
|
||||
<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-dash-circle" viewBox="0 0 16 16">
|
||||
<path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z"/>
|
||||
<path d="M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z"/>
|
||||
</svg>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</form> --}}
|
||||
|
||||
</div>
|
||||
|
||||
<span class="card-header">
|
||||
|
|
|
|||
|
|
@ -4,6 +4,8 @@
|
|||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="initial-scale=1, width=device-width" />
|
||||
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests">
|
||||
|
||||
|
||||
<link rel="shortcut icon" href="{{ asset('/favicon.ico') }}">
|
||||
|
||||
<title>@yield('Title')</title>
|
||||
|
|
|
|||
Loading…
Reference in a new issue