14 lines
171 B
CSS
14 lines
171 B
CSS
a {
|
|
@apply text-gray-600 no-underline
|
|
}
|
|
|
|
a:hover,
|
|
a:focus {
|
|
@apply text-blue-800;
|
|
}
|
|
|
|
h2:before {
|
|
content: '';
|
|
@apply w-10 block border-t-2 border-gray-600 mb-4;
|
|
}
|