refactor: order classes using rustywind
This commit is contained in:
parent
a98ba89b53
commit
b82afcbd8c
9 changed files with 15 additions and 15 deletions
|
@ -128,14 +128,14 @@ recommendations:
|
|||
<header>{{ recommendation.tagline }}</header>
|
||||
|
||||
<div class="mt-4">
|
||||
<div class="flex flex-col-reverse md:flex-row space-y-3 space-y-reverse md:space-y-0 md:space-x-6">
|
||||
<div class="flex flex-col-reverse space-y-3 space-y-reverse md:flex-row md:space-y-0 md:space-x-6">
|
||||
<div class="markdown">
|
||||
{{ recommendation.text|raw }}
|
||||
</div>
|
||||
|
||||
{% if recommendation.image.path %}
|
||||
<div class="flex-shrink-0">
|
||||
<img class="w-16 md:w-24 border border-gray rounded-full bg-white" src="{{ recommendation.image.path }}">
|
||||
<img class="w-16 bg-white rounded-full border md:w-24 border-gray" src="{{ recommendation.image.path }}">
|
||||
</div>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
|
|
@ -11,7 +11,7 @@ use:
|
|||
{% for talk in data.talks|sort((a, b) => get_last_event_date_for_talk(a) < get_last_event_date_for_talk(b)) %}
|
||||
<article>
|
||||
<h2>
|
||||
<a class="text-blue-primary dark:text-blue-400" href="{{ talk.url }}">
|
||||
<a class="dark:text-blue-400 text-blue-primary" href="{{ talk.url }}">
|
||||
{{ talk.title }}
|
||||
</a>
|
||||
</h2>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue