Fixes for purge CSS

This commit is contained in:
Dane Everitt 2019-12-22 14:33:08 -08:00
parent 6276a03a4e
commit 5a31771b4b
No known key found for this signature in database
GPG key ID: EEA66103B3D71F53
3 changed files with 20 additions and 6 deletions

View file

@ -25,6 +25,7 @@
@apply .flex .items-center .h-full .no-underline .text-neutral-300 .px-6;
transition: background-color 150ms linear, color 150ms linear, box-shadow 150ms ease-in;
/*! purgecss start ignore */
&.active, &:hover {
@apply .text-neutral-100 .bg-black;
box-shadow: inset 0 -2px config('colors.cyan-700');
@ -33,6 +34,7 @@
&.active {
box-shadow: inset 0 -2px config('colors.cyan-500');
}
/*! purgecss end ignore */
}
}
}
@ -43,6 +45,7 @@
.items {
@apply .flex .items-center .text-sm .mx-2;
/*! purgecss start ignore */
& > a, & > div {
@apply .inline-block .py-3 .px-4 .text-neutral-300 .no-underline;
transition: color 150ms linear, box-shadow 150ms ease-in;
@ -60,5 +63,6 @@
box-shadow: inset 0 -2px config('colors.cyan-500');
}
}
/*! purgecss end ignore */
}
}