-
-
Notifications
You must be signed in to change notification settings - Fork 86
Theme
tanthammar edited this page Dec 8, 2020
·
10 revisions
The documentation on this page assumes that you went through the steps on the "Tailwind Config" page.
The package provides a theme file. You can easily create your own themes by copying that file. If you create a new theme, PLEASE SHARE it. Create a pull request or an issue and it will be added to the package.
The theme will be published to resources/css/
Tailwind v2.x
php artisan vendor:publish --tag=tall-form-theme-css
Tailwind v1.x
php artisan vendor:publish --tag=tall-form-theme-tw1x-css
The theme will be published to resources/sass/
Tailwind v2.x
php artisan vendor:publish --tag=tall-form-theme-sass
Tailwind v1.x
php artisan vendor:publish --tag=tall-form-theme-tw1x-sass
Add @import 'tall-theme';
after @import 'tailwindcss/components';
.
@import 'tailwindcss/base';
@import 'tailwindcss/components'; //after components
@import 'tall-theme.css'; //omit .css if using sass
@import 'tailwindcss/utilities';
npm run dev
- Duplicate the
tall-theme
file. - Make your changes. (Don't change and class names.)
- Change the
@import
intailwind.config.js
to your new theme file name. -
npm run dev
or prod -
Please share your new theme
, by making a PR, or opening an issue.
Create a custom.css or custom.scss file.
/**
* Remove the default box-shadow for invalid elements to prevent inputs in Livewire components showing with a red border by default in Firefox.
* Src: https://github.com/laravel-frontend-presets/tall/issues/7
*/
input:invalid, textarea:invalid, select:invalid {
box-shadow: none;
}
input, select, textarea, button, div, a {
&:focus, &:active, &:hover {
outline: none;
}
}
/**
* For AlpineJS
*/
[x-cloak] {
display: none;
}
Add @import 'custom.css';
after @import 'tailwindcss/components';
.
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'custom.css'; //omit .css if using sass
@import 'tall-theme.css'; //omit .css if using sass
@import 'tailwindcss/utilities';
npm run dev
Next step -> Wrapper Layout
- Installation
- Requirements
- v5 Upgrade Guide
- v6 Upgrade Guide
- v7 Upgrade Guide
- Support
- Quickstart
- Manual installation
- Optional
- Form component
- Field
- Field types
- Example Form
- Blade Components
- Notifications