Be consistent with semicolons
This commit is contained in:
parent
d5a9fb078b
commit
a3ee110ed9
|
@ -1,35 +1,36 @@
|
|||
.entry-content {
|
||||
@apply bg-red-500;
|
||||
@apply font-serif text-lg leading-loose;
|
||||
|
||||
@screen md {
|
||||
@apply text-xl
|
||||
@apply text-xl;
|
||||
}
|
||||
|
||||
h2 {
|
||||
@apply text-2xl font-bold mt-8 -mb-5
|
||||
@apply text-2xl font-bold mt-8 -mb-5;
|
||||
}
|
||||
|
||||
a {
|
||||
@apply text-blue-700 underline;
|
||||
|
||||
&:hover {
|
||||
@apply text-blue-800 no-underline
|
||||
@apply text-blue-800 no-underline;
|
||||
}
|
||||
}
|
||||
|
||||
* + * {
|
||||
@apply mt-6
|
||||
@apply mt-6;
|
||||
}
|
||||
|
||||
p {
|
||||
@apply font-serif
|
||||
@apply font-serif;
|
||||
}
|
||||
|
||||
ul {
|
||||
@apply list-disc ml-6
|
||||
@apply list-disc ml-6;
|
||||
}
|
||||
|
||||
li + li {
|
||||
@apply mt-0
|
||||
@apply mt-0;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -3,11 +3,11 @@ input[type=search] {
|
|||
@apply border border-gray-400 p-2 mb-2;
|
||||
|
||||
&:focus {
|
||||
@apply outline-none bg-gray-100
|
||||
@apply outline-none bg-gray-100;
|
||||
}
|
||||
|
||||
&::placeholder {
|
||||
@apply text-black
|
||||
@apply text-black;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -17,6 +17,6 @@ input[type=submit] {
|
|||
|
||||
&:hover,
|
||||
&:focus {
|
||||
@apply bg-blue-800
|
||||
@apply bg-blue-800;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
@apply text-black text-4xl font-bold mt-6 mb-8;
|
||||
|
||||
@screen md {
|
||||
@apply text-5xl
|
||||
@apply text-5xl;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -10,14 +10,14 @@
|
|||
@apply text-inherit;
|
||||
|
||||
&:hover {
|
||||
@apply text-gray-800 no-underline
|
||||
@apply text-gray-800 no-underline;
|
||||
}
|
||||
}
|
||||
|
||||
.entry-header,
|
||||
.entry-meta,
|
||||
.entry-footer {
|
||||
@apply flex flex-wrap w-full
|
||||
@apply flex flex-wrap w-full;
|
||||
}
|
||||
|
||||
.byline,
|
||||
|
@ -28,6 +28,6 @@
|
|||
@apply flex items-center mr-4 mb-2;
|
||||
|
||||
svg {
|
||||
@apply mr-2 fill-current text-gray-600
|
||||
@apply mr-2 fill-current text-gray-600;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
.widget {
|
||||
@apply text-xl
|
||||
@apply text-xl;
|
||||
}
|
||||
|
||||
.widget a {
|
||||
@apply text-blue-700 font-bold
|
||||
@apply text-blue-700 font-bold;
|
||||
}
|
||||
|
|
|
@ -11,18 +11,18 @@ a {
|
|||
|
||||
a:hover,
|
||||
a:focus {
|
||||
@apply text-blue-800
|
||||
@apply text-blue-800;
|
||||
}
|
||||
|
||||
@tailwind components;
|
||||
|
||||
h2:before {
|
||||
content: '';
|
||||
@apply w-10 block border-t-2 border-gray-600 mb-4
|
||||
@apply w-10 block border-t-2 border-gray-600 mb-4;
|
||||
}
|
||||
|
||||
.screen-reader-text {
|
||||
@apply absolute opacity-0 pointer-events-none
|
||||
@apply absolute opacity-0 pointer-events-none;
|
||||
}
|
||||
|
||||
@import 'components/content.css';
|
||||
|
|
Loading…
Reference in a new issue