Change spaces

This commit is contained in:
Oliver Davies 2020-09-11 17:45:00 +01:00
parent 9108523ff3
commit b6f711b5cd

View file

@ -1,35 +1,40 @@
@tailwind base; @tailwind base;
a {
@apply text-red-800 text-lg
}
a:hover, a:hover,
a:focus { a:focus {
@apply underline @apply underline
} }
@tailwind components; @tailwind components;
.nav-item { .nav-item {
@apply flex text-gray-900 text-xs; @apply flex text-gray-900 text-xs;
@screen lg { @screen lg {
@apply text-sm @apply text-sm
} }
@screen dark { @screen dark {
@apply text-gray-200 @apply text-gray-200
} }
} }
@tailwind utilities; @tailwind utilities;
@variants responsive { @responsive {
.filter-contrast-1 { .filter-contrast-1 {
filter: contrast(1%) filter: contrast(1%)
} }
.filter-invert-100 {
filter: invert(100%) .filter-invert-100 {
} filter: invert(100%)
}
} }
.with-arrow:after { .with-arrow:after {
content: "\A0\2192" content: "\A0\2192"
} }