Clean up styles in with-tailwindcss example (#12458)

This commit is contained in:
Taylor Bryant 2020-05-03 18:45:57 -05:00 committed by GitHub
parent 0c8a4017a8
commit 5e80999c04
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 10 additions and 18 deletions

View file

@ -14,9 +14,9 @@ export default function Nav() {
<a className="text-blue-500 no-underline">Home</a> <a className="text-blue-500 no-underline">Home</a>
</Link> </Link>
</li> </li>
<ul className="flex justify-between items-center"> <ul className="flex justify-between items-center space-x-4">
{links.map(({ href, label }) => ( {links.map(({ href, label }) => (
<li key={`${href}${label}`} className="ml-4"> <li key={`${href}${label}`}>
<a href={href} className="btn-blue no-underline"> <a href={href} className="btn-blue no-underline">
{label} {label}
</a> </a>

View file

@ -1,3 +0,0 @@
.btn-blue {
@apply bg-blue-500 text-white font-bold py-2 px-4 rounded;
}

View file

@ -1,23 +1,18 @@
@import './button.css';
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;
@tailwind utilities;
.btn-blue {
@apply bg-blue-500 text-white font-bold py-2 px-4 rounded;
}
.hero { .hero {
width: 100%; @apply py-20;
color: #333;
} }
.title { .title {
margin: 0; @apply text-5xl text-center;
width: 100%; color: #333;
padding-top: 80px;
line-height: 1.15; line-height: 1.15;
font-size: 48px;
} }
.title, @tailwind utilities;
.description {
text-align: center;
}