This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
* { | |
font-family: Dank Mono, monospace; | |
} | |
.actions-container.highlight-toggled { | |
display: none !important; | |
} | |
.editor .title .actions-container .action-item a { | |
visibility: hidden; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use function Livewire\Volt\{state, mount}; | |
use Illuminate\Support\Facades\Cache; | |
use function Illuminate\Log\log; | |
state([ | |
'message' => 'Press Defer to Begin', | |
'is_polling' => true, | |
]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// In Laravel app.js | |
import NProgress from 'nprogress'; | |
Livewire.hook('commit', ({ component, commit, respond, succeed, fail }) => { | |
NProgress.start() | |
succeed(({ spanshot, effect }) => { | |
queueMicrotask(() => { | |
NProgress.done(true) |