forked from rDrama/rDrama
1
0
Fork 0
master
kek7198 2021-11-28 10:54:01 -06:00
parent 40444fc00d
commit 989427dfe6
2 changed files with 16 additions and 3 deletions

View File

@ -564,7 +564,7 @@
<div class="ml-20 text-gray-200 font-bold font-heading">
{{ p.comment_count }} {{ 'Response' if p.comment_count == 1 else 'Responses' }}
</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>
<a href="?sort=top" class="{% if sort == 'top' %}font-bold text-gray-200{% endif %}">
Top

View File

@ -13,14 +13,27 @@ module.exports = {
current: 'currentColor',
black: colors.black,
white: colors.white,
gray: colors.gray,
pink: colors.pink,
green: colors.green,
red: colors.red,
yellow: colors.amber,
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: {
extend: {},