Browse Source

Melhorias no formulário de associado indivíduo

usuarios_separados
Guilherme Capanema 6 years ago
parent
commit
9c99ecf363
5 changed files with 7 additions and 5 deletions
  1. +1
    -1
      app/Http/Livewire/Auth/Register/Individual.php
  2. +1
    -1
      public/css/app.css
  3. +1
    -1
      public/mix-manifest.json
  4. +1
    -1
      resources/views/components/input/text.blade.php
  5. +3
    -1
      tailwind.config.js

+ 1
- 1
app/Http/Livewire/Auth/Register/Individual.php View File

@ -23,7 +23,7 @@ class Individual extends Component
/** @var array */ /** @var array */
public $document = [ public $document = [
'type' => '',
'type' => 'cpf',
'number' => '', 'number' => '',
]; ];


+ 1
- 1
public/css/app.css
File diff suppressed because it is too large
View File


+ 1
- 1
public/mix-manifest.json View File

@ -1,5 +1,5 @@
{ {
"/js/app.js": "/js/app.js?id=c96c4e4417ad9efc981d", "/js/app.js": "/js/app.js?id=c96c4e4417ad9efc981d",
"/css/app.css": "/css/app.css?id=279ed9f80602d12f958b",
"/css/app.css": "/css/app.css?id=e52cebc035b7296e5c1c",
"/js/app.js.map": "/js/app.js.map?id=8a4ea1e37c17db13cc91" "/js/app.js.map": "/js/app.js.map?id=8a4ea1e37c17db13cc91"
} }

+ 1
- 1
resources/views/components/input/text.blade.php View File

@ -7,7 +7,7 @@
<input <input
{{ $attributes }} {{ $attributes }}
type="text" type="text"
class="appearance-none block w-full px-3 py-2 border border-gray-300 rounded-md placeholder-gray-400 focus:outline-none focus:shadow-outline-blue focus:border-blue-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5
class="appearance-none block w-full px-3 py-2 disabled:bg-gray-100 border border-gray-300 rounded-md placeholder-gray-400 focus:outline-none focus:shadow-outline-blue focus:border-blue-300 transition duration-150 ease-in-out sm:text-sm sm:leading-5
@if ($state === false) border-red-300 text-red-900 placeholder-red-300 focus:border-red-300 focus:shadow-outline-red @endif" @if ($state === false) border-red-300 text-red-900 placeholder-red-300 focus:border-red-300 focus:shadow-outline-red @endif"
/> />
</div> </div>


+ 3
- 1
tailwind.config.js View File

@ -8,7 +8,9 @@ module.exports = {
}, },
}, },
}, },
variants: {},
variants: {
backgroundColor: ['responsive', 'hover', 'focus', 'disabled'],
},
purge: { purge: {
content: [ content: [
'./app/**/*.php', './app/**/*.php',