-1

我正在学习 Laravel 刀片。我已经安装了微风,我正在尝试在 dashboard.blade.php 中添加一个按钮。

<x-app-layout>
    <x-slot name="header">
        <h2 class="font-semibold text-xl text-gray-800 leading-tight">
            {{ __('Dashboard') }}
        </h2>
    </x-slot>

    <div class="py-12">
        <div class="max-w-7xl mx-auto sm:px-6 lg:px-8">
            <div class="bg-white overflow-hidden shadow-sm sm:rounded-lg">
                <div class="p-6 bg-white border-b border-gray-200">
                    Hello, You're logged in!
                    <br><br><button type="button" class="btn btn-danger">Danger</button>
                </div>
            </div>
        </div>
    </div>
</x-app-layout>

该按钮出现时没有任何形状或轮廓。你能告诉我我在这里犯了什么错误吗?

在此处输入图像描述

4

1 回答 1

1

查看您的标记,有一些与 Tailwind 相关的类,所以我假设您使用的是 Tailwindcss。

在这种情况下,您尝试在 Tailwind CSS 设置中使用 Bootstrap 类。

为了实现与危险按钮类似的按钮,您可以执行以下操作:

<button 
    type="button" 
    class="rounded-md bg-red-500 text-white focus:ring-red-600 px-4 py-2 text-sm">Danger</button>

https://tailwindcss.com/docs/installation

于 2021-12-28T18:24:01.270 回答