No tienes acceso a esta clase

¡Continúa aprendiendo! Únete y comienza a potenciar tu carrera

No se trata de lo que quieres comprar, sino de quién quieres ser. Invierte en tu educación con el precio especial

Antes: $249

Currency
$209

Paga en 4 cuotas sin intereses

Paga en 4 cuotas sin intereses
Suscríbete

Termina en:

11 Días
16 Hrs
53 Min
50 Seg

Añadiendo estilos con Tailwind CSS

22/24
Recursos

Aportes 6

Preguntas 0

Ordenar por:

¿Quieres ver más aportes, preguntas y respuestas de la comunidad?

Hola, si no quieres escribir todos los estilos del profe, puedes copiarlos del siguiente commit, también viene incluido el cdn de tailwind por si lo olvidaste:

https://github.com/AbnirHencazs/tag-tdd/tree/c535da1e2901607385d88b01137d06dab54bf280

Les dejo el maquetado de welcome.blade.php

<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>Laravel</title>
        <link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
    </head>
    <body class="bg-gray-200 py-10">
        <div class="max-w-lg bg-white mx-auto p-5 rounded shadow">
            <form action="tags" method="POST" class="flex mb-4">
                @csrf
                <input type="text" name="name" class="rounded-l bg-gray-200 p-4 w-full outline-none" placeholder="Nueva etiqueta">
                <input type="submit" value="Agregar" class="rounded-r px-8 bg-blue-500 text-white outline-none">
            </form>
            <h4 class="text-lg text-center mb-4">Listado de Etiquetas</h4>
            <table>
                @forelse ($tags as $tag)
                <tr>
                    <td class="border px-4 py-2">{{ $tag->name }}</td>
                    <td class="px-4 py-2">
                        <form action="tags/{{ $tag->id }}" method="post">
                            @csrf
                            @method('delete')
                            <input type="submit" value="Eliminar" class="px-3 rounded bg-red-500 text-white">
                        </form>
                    </td>
                </tr>
                @empty
                    <tr>
                        <td>
                            <p>No hay etiquetas</p>
                        </td>
                    </tr>
                @endforelse
            </table>
        </div>
    </body>
</html>

Mi aporte no tiene nada que ver con TDD pero en tailwind es mejor usar la misma paleta de colores o acentos para obtener un mejor resultado.

En lugar de usar text-white en los botones podemos combinar asi:

bg-red-500 text-red-100
bg-blue-500 text-blue-100

Tailwind documentación:
https://tailwindcss.com/docs/installation

<link href="https://unpkg.com/tailwindcss@^2/dist/tailwind.min.css" rel="stylesheet">
## 🦄✨Decidí conservar los colores de Laravel y hacer estilos responsivos. Así me quedó :3 ![](https://static.platzi.com/media/user_upload/127.0.0.1_8000_-a3e79b7e-8dc1-434f-85eb-54cc2724f0be.jpg) ![](https://static.platzi.com/media/user_upload/127.0.0.1_8000_-68dce5b1-1a10-4ac9-8a89-481311ff63ca.jpg)