Be consistent with semicolons

This commit is contained in:
Oliver Davies 2019-04-16 20:43:59 +01:00
parent d5a9fb078b
commit a3ee110ed9
5 changed files with 20 additions and 19 deletions

View file

@ -1,35 +1,36 @@
.entry-content { .entry-content {
@apply bg-red-500;
@apply font-serif text-lg leading-loose; @apply font-serif text-lg leading-loose;
@screen md { @screen md {
@apply text-xl @apply text-xl;
} }
h2 { h2 {
@apply text-2xl font-bold mt-8 -mb-5 @apply text-2xl font-bold mt-8 -mb-5;
} }
a { a {
@apply text-blue-700 underline; @apply text-blue-700 underline;
&:hover { &:hover {
@apply text-blue-800 no-underline @apply text-blue-800 no-underline;
} }
} }
* + * { * + * {
@apply mt-6 @apply mt-6;
} }
p { p {
@apply font-serif @apply font-serif;
} }
ul { ul {
@apply list-disc ml-6 @apply list-disc ml-6;
} }
li + li { li + li {
@apply mt-0 @apply mt-0;
} }
} }

View file

@ -3,11 +3,11 @@ input[type=search] {
@apply border border-gray-400 p-2 mb-2; @apply border border-gray-400 p-2 mb-2;
&:focus { &:focus {
@apply outline-none bg-gray-100 @apply outline-none bg-gray-100;
} }
&::placeholder { &::placeholder {
@apply text-black @apply text-black;
} }
} }
@ -17,6 +17,6 @@ input[type=submit] {
&:hover, &:hover,
&:focus { &:focus {
@apply bg-blue-800 @apply bg-blue-800;
} }
} }

View file

@ -2,7 +2,7 @@
@apply text-black text-4xl font-bold mt-6 mb-8; @apply text-black text-4xl font-bold mt-6 mb-8;
@screen md { @screen md {
@apply text-5xl @apply text-5xl;
} }
} }
@ -10,14 +10,14 @@
@apply text-inherit; @apply text-inherit;
&:hover { &:hover {
@apply text-gray-800 no-underline @apply text-gray-800 no-underline;
} }
} }
.entry-header, .entry-header,
.entry-meta, .entry-meta,
.entry-footer { .entry-footer {
@apply flex flex-wrap w-full @apply flex flex-wrap w-full;
} }
.byline, .byline,
@ -28,6 +28,6 @@
@apply flex items-center mr-4 mb-2; @apply flex items-center mr-4 mb-2;
svg { svg {
@apply mr-2 fill-current text-gray-600 @apply mr-2 fill-current text-gray-600;
} }
} }

View file

@ -1,7 +1,7 @@
.widget { .widget {
@apply text-xl @apply text-xl;
} }
.widget a { .widget a {
@apply text-blue-700 font-bold @apply text-blue-700 font-bold;
} }

View file

@ -11,18 +11,18 @@ a {
a:hover, a:hover,
a:focus { a:focus {
@apply text-blue-800 @apply text-blue-800;
} }
@tailwind components; @tailwind components;
h2:before { h2:before {
content: ''; 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 { .screen-reader-text {
@apply absolute opacity-0 pointer-events-none @apply absolute opacity-0 pointer-events-none;
} }
@import 'components/content.css'; @import 'components/content.css';