Remove core.blade.php and add notification patches.
This is an attempt at making buttons behind notifications clickable after notifications disappear. Core.blade.php was unused so it's now removed.
This commit is contained in:
parent
08c26c0191
commit
8be073b935
2 changed files with 6 additions and 18 deletions
|
@ -1,8 +1,10 @@
|
|||
@keyframes notification {
|
||||
0% {right:-300px;opacity:0;background-color: #2a3743;}
|
||||
10% {right:12px;opacity:1;background-color: #1f2933;}
|
||||
90% {right:12px;opacity:1;background-color: #1f2933;}
|
||||
100% {right:-300px;opacity:0;background-color: #2a3743;}
|
||||
0% {right:-300px;opacity:0;background-color: #2a3743;display:none;}
|
||||
1% {right:-300px;opacity:0;background-color: #2a3743;display:inline;}
|
||||
10% {right:12px;opacity:1;background-color: #1f2933;display:inline;}
|
||||
90% {right:12px;opacity:1;background-color: #1f2933;display:inline;}
|
||||
99% {right:-300px;opacity:0;background-color: #2a3743;display:inline;}
|
||||
100% {right:-300px;opacity:0;background-color: #2a3743;display:none;}
|
||||
}
|
||||
|
||||
.notification {
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
@extends('templates/wrapper', [
|
||||
'css' => ['body' => 'bg-neutral-800'],
|
||||
])
|
||||
|
||||
@section('container')
|
||||
<div id="modal-portal"></div>
|
||||
<div id="app">
|
||||
@yield('blueprint')
|
||||
</div>
|
||||
@endsection
|
||||
|
||||
@section('blueprint')
|
||||
<!-- wrapper:insert -->
|
||||
@endsection
|
Loading…
Reference in a new issue