Kaydet (Commit) c41e46d8 authored tarafından Baran Sekin's avatar Baran Sekin

Fixed responsive design of error pages

üst a3dba320
This diff is collapsed.
{
"/css/liman.css": "/css/liman.css?id=393d00a7eee0295a068d",
"/js/liman.js": "/js/liman.js?id=9efd3f5ee91a154c794d"
"/css/liman.css": "/css/liman.css?id=dc7d732f221978ef5524",
"/js/liman.js": "/js/liman.js?id=daa573ee99046b29b953"
}
......@@ -57,3 +57,13 @@ table.dataTable tbody tr.selected {
-moz-box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.75);
box-shadow: 0px 0px 15px -2px rgba(0, 0, 0, 0.75);
}
.error-page > .error-content {
margin-left: 150px;
}
@media (max-width: 767.98px) {
.error-page > .error-content {
margin-left: 0;
}
}
......@@ -3,14 +3,14 @@
@else
@extends('layouts.app')
@section('content')
<div class="error-page">
<div class="error-page mt-5">
<h2 class="headline text-warning"><i class="fas fa-exclamation-triangle text-warning"></i></h2>
<div class="error-content" style="margin-top: 3rem;margin-left: 150px;">
<div class="error-content">
<h3>{{ __("Bir şeyler ters gitti.") }}</h3>
<p>
{{ $exception->getMessage() }}
<a class="btn btn-primary mt-2" href="{{ URL::previous() }}">{{ __("Geri Dön") }}</a>
<br><a class="btn btn-primary mt-2" href="{{ URL::previous() }}">{{ __("Geri Dön") }}</a>
</p>
</div>
</div>
......
......@@ -3,14 +3,14 @@
@else
@extends('layouts.app')
@section('content')
<div class="error-page">
<div class="error-page mt-5">
<h2 class="headline text-warning"><i class="fas fa-exclamation-triangle text-warning"></i></h2>
<div class="error-content" style="margin-top: 3rem;margin-left: 150px;">
<div class="error-content">
<h3>{{ __("Bir şeyler ters gitti.") }}</h3>
<p>
{{ $exception->getMessage() }}
<a class="btn btn-primary mt-2" href="{{ URL::previous() }}">{{ __("Geri Dön") }}</a>
<br><a class="btn btn-primary mt-2" href="{{ URL::previous() }}">{{ __("Geri Dön") }}</a>
</p>
</div>
</div>
......
......@@ -3,14 +3,14 @@
@else
@extends('layouts.app')
@section('content')
<div class="error-page">
<div class="error-page mt-5">
<h2 class="headline text-warning"><i class="fas fa-exclamation-triangle text-warning"></i></h2>
<div class="error-content" style="margin-top: 3rem;margin-left: 150px;">
<div class="error-content">
<h3>{{ __("Bir şeyler ters gitti.") }}</h3>
<p>
{{ $exception->getMessage() }}
<a class="btn btn-primary mt-2" href="{{ URL::previous() }}">{{ __("Geri Dön") }}</a>
<br><a class="btn btn-primary mt-2" href="{{ URL::previous() }}">{{ __("Geri Dön") }}</a>
</p>
</div>
</div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment