This repository has been archived by the owner on May 27, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Redesign with blade components * Remove translation stub * Update default welcome view * Move input padding * Change bg color * Minor UI tweaks * Update readme * Apply fixes from StyleCI (#17) * Move status flash code * Update example component styles * Add example markup * Update readme * Update readme * Remove v-cloak * Minor UI tweaks * Add echo comments * Update Tailwind to 1.7 * Add route attribute to nav link * Apply fixes from StyleCI (#18) Co-authored-by: Zak Nesler <zaknesler@users.noreply.github.com> * Update tailwind file * Add preview screenshots * Change font sizes * Increase nav padding * Update deps * Add support for Laravel 8 Co-authored-by: Zak Nesler <zaknesler@users.noreply.github.com>
- Loading branch information
Showing
33 changed files
with
449 additions
and
850 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,20 +1,8 @@ | ||
[v-cloak] { | ||
display: none; | ||
} | ||
|
||
@tailwind base; | ||
@tailwind components; | ||
|
||
.btn { | ||
@apply px-6 py-3 bg-brand-500 font-semibold text-white rounded-lg border-none appearance-none transition duration-100 transition-shadow; | ||
} | ||
|
||
.btn:hover { | ||
@apply bg-brand-600; | ||
} | ||
|
||
.btn:focus { | ||
@apply outline-none shadow-outline; | ||
@apply px-6 py-3 bg-brand-500 font-semibold text-white rounded-lg shadow-sm border-none cursor-pointer appearance-none transition duration-100 hover:bg-brand-600 focus:outline-none focus:shadow-outline; | ||
} | ||
|
||
@tailwind utilities; |
Oops, something went wrong.