fix
This commit is contained in:
parent
c9ea9d0163
commit
9b30c493ad
2 changed files with 16 additions and 3 deletions
|
@ -564,7 +564,7 @@
|
||||||
<div class="ml-20 text-gray-200 font-bold font-heading">
|
<div class="ml-20 text-gray-200 font-bold font-heading">
|
||||||
{{ p.comment_count }} {{ 'Response' if p.comment_count == 1 else 'Responses' }}
|
{{ p.comment_count }} {{ 'Response' if p.comment_count == 1 else 'Responses' }}
|
||||||
</div>
|
</div>
|
||||||
<ul class="flex space-x-3 text-sm text-gray-500">
|
<ul class="flex space-x-3 text-sm text-gray-500 leading-normal">
|
||||||
<li>
|
<li>
|
||||||
<a href="?sort=top" class="{% if sort == 'top' %}font-bold text-gray-200{% endif %}">
|
<a href="?sort=top" class="{% if sort == 'top' %}font-bold text-gray-200{% endif %}">
|
||||||
Top
|
Top
|
||||||
|
|
|
@ -13,14 +13,27 @@ module.exports = {
|
||||||
current: 'currentColor',
|
current: 'currentColor',
|
||||||
black: colors.black,
|
black: colors.black,
|
||||||
white: colors.white,
|
white: colors.white,
|
||||||
gray: colors.gray,
|
|
||||||
pink: colors.pink,
|
pink: colors.pink,
|
||||||
green: colors.green,
|
green: colors.green,
|
||||||
red: colors.red,
|
red: colors.red,
|
||||||
yellow: colors.amber,
|
yellow: colors.amber,
|
||||||
blue: colors.sky
|
blue: colors.sky
|
||||||
},
|
},
|
||||||
extend: {},
|
extend: {
|
||||||
|
colors: {
|
||||||
|
gray: {
|
||||||
|
'100': '#D6DED4',
|
||||||
|
'200': '#BFCEC3',
|
||||||
|
'300': '#C1D1BC',
|
||||||
|
'400': '#98A8A3',
|
||||||
|
'500': '#6C7F77',
|
||||||
|
'600': '#4D625D',
|
||||||
|
'700': '#3B5A4A',
|
||||||
|
'800': '#405147',
|
||||||
|
'900': '#2C3635'
|
||||||
|
},
|
||||||
|
}
|
||||||
|
},
|
||||||
},
|
},
|
||||||
variants: {
|
variants: {
|
||||||
extend: {},
|
extend: {},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue