-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Background image of primary hero appears damaged
Relates to #44
- Loading branch information
1 parent
7534d66
commit 5100766
Showing
10 changed files
with
13 additions
and
13 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
2 changes: 1 addition & 1 deletion
2
files/website/resources/views/vendor/hyde/components/navigation/navigation-brand.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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<a class="flex items-center space-x-2 px-4 font-bold" | ||
href="{{ Routes::get('index') }}" | ||
aria-label="Home page"> | ||
<i class="bx bx-eraser text-4xl"></i> <span>{{ config('hyde.name', 'Learning Sandbox Online') }}</span> | ||
<span>{{ config('hyde.name', 'Learning Sandbox Online') }}</span> | ||
</a> |
4 changes: 2 additions & 2 deletions
4
files/website/resources/views/vendor/hyde/components/navigation/navigation-link.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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<a href="{{ $item }}" | ||
{!! $item->isCurrent() ? 'aria-current="page"' : '' !!} | ||
@class([ | ||
'block my-2 md:my-0 md:inline-block py-1 hover:text-gray-900 text-gray-100', | ||
'border-l-4 border-indigo-500 md:border-none font-medium -ml-6 pl-5 md:ml-0 md:pl-0 bg-gray-800 md:bg-transparent' => $item->isCurrent(), | ||
'block my-2 md:my-0 md:inline-block py-1 hover:text-gray-900 text-accent', | ||
'text-accent border-l-4 border-indigo-500 md:border-none font-medium -ml-6 pl-5 md:ml-0 md:pl-0 bg-gray-800 md:bg-transparent' => $item->isCurrent(), | ||
])>{{ $item->label }}</a> |
2 changes: 1 addition & 1 deletion
2
files/website/resources/views/vendor/hyde/layouts/app.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
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
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 |
---|---|---|
|
@@ -97,6 +97,6 @@ module.exports = { | |
], | ||
|
||
daisyui: { | ||
themes: ['halloween'] | ||
themes: ['cupcake'] | ||
} | ||
}; |