-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from RafaelBlum/add-logotype-contributors
⚡ perf: Add logo in readme, contributors and logo in login and navbar
- Loading branch information
Showing
7 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions
16
resources/views/vendor/filament-panels/components/logo.blade.php
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
@if(Route::current()->getName() === 'filament.hub.auth.login') | ||
<img src="{{asset('brands/dinero-logo.png')}}" | ||
alt="{{config('app.name')}}" | ||
title="{{config('app.name')}}" | ||
width="290" | ||
class="mb-2" | ||
> | ||
@else | ||
<img src="{{asset('brands/dinero-logo-adm.png')}}" | ||
alt="{{config('app.name')}}" | ||
title="{{config('app.name')}}" | ||
width="140" | ||
> | ||
@endif | ||
|
||
{{-- Precisa somente de uma condição para trocar as logos quando sistema esta dark e light e retirar o style --}} |