Style fixes and improvements
This commit is contained in:
@@ -2,64 +2,54 @@
|
||||
<div class="mb-10">
|
||||
<div>
|
||||
<h3
|
||||
class="text-gray-800 font-bold text-3xl text-right mt-3 mb-2 mr-3 MvAamu"
|
||||
class="text-gray-800 font-bold text-3xl text-center mt-3 mb-2 mr-3 MvAamu"
|
||||
>
|
||||
ފަހުގެ ޙަބަރުތަށް
|
||||
</h3>
|
||||
</div>
|
||||
|
||||
<div class="flex justify-end">
|
||||
<!-- post cards -->
|
||||
<div class="w-full lg:w-2/3">
|
||||
<div v-for="story in recentStories" :key="story.id">
|
||||
<a
|
||||
:href="'/article/' + story.id"
|
||||
class="block w-full lg:flex mb-10 shadow rounded-lg"
|
||||
>
|
||||
<div class="container mx-auto">
|
||||
<div class="flex md:-mx-4 flex-wrap mb-7 md:px-0">
|
||||
<div
|
||||
class="w-1/2 md:w-1/4 px-4 py-4 flex-grow"
|
||||
v-for="story in recentStories"
|
||||
:key="story.id"
|
||||
>
|
||||
<a :href="'/article/' + story.id">
|
||||
<div
|
||||
class="bg-white rounded px-4 flex flex-col flex-grow justify-between leading-normal"
|
||||
class="w-full h-auto overflow-hidden relative rounded"
|
||||
>
|
||||
<div>
|
||||
<div
|
||||
class="mt-5 text-gray-700 font-semibold text-2xl mb-2 text-right MvTyper hover:underline"
|
||||
style="direction:rtl;"
|
||||
v-text="story.title"
|
||||
></div>
|
||||
|
||||
<div
|
||||
class="flex items-center justify-end mt-3 mb-3"
|
||||
>
|
||||
<p
|
||||
class="font-semibold text-gray-700 text-sm capitalize MvTyper py-4"
|
||||
v-text="story.source.name"
|
||||
></p>
|
||||
<p class="text-gray-600 text-xs ml-1">
|
||||
—
|
||||
{{
|
||||
story.published_date
|
||||
| moment("calendar")
|
||||
}}
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<p
|
||||
class="text-gray-700 text-base text-right MvTyper"
|
||||
style="direction:rtl;"
|
||||
>
|
||||
{{ story.body[0] }}
|
||||
</p>
|
||||
</div>
|
||||
<img :src="story.featured_image" />
|
||||
</div>
|
||||
|
||||
<div
|
||||
class="h-48 lg:w-48 flex-none bg-cover text-center overflow-hidden rounded object-right dark-img"
|
||||
:style="{
|
||||
'background-image':
|
||||
'url(' + story.featured_image + ')'
|
||||
}"
|
||||
:title="story.meta.title"
|
||||
></div>
|
||||
</a>
|
||||
<div class="w-full h-auto text-right overflow-hidden mt-3">
|
||||
<a
|
||||
:href="'/article/' + story.id"
|
||||
class="text-md leading-normal font-semibold text-right text-gray-700 py-3 MvTyper hover:underline"
|
||||
style="direction:rtl;"
|
||||
v-text="story.title"
|
||||
></a>
|
||||
<div class="flex items-center justify-end mt-3 mb-3">
|
||||
<a :href="'/source/' + story.source.slug">
|
||||
<div class="flex justify-end items-center">
|
||||
<div>
|
||||
<p
|
||||
class="font-semibold text-gray-700 text-sm capitalize MvTyper"
|
||||
v-text="story.source.name"
|
||||
></p>
|
||||
</div>
|
||||
|
||||
<img
|
||||
:src="story.source.logo"
|
||||
class="h-10 w-10 rounded-full ml-1 object-cover"
|
||||
/>
|
||||
</div>
|
||||
</a>
|
||||
</div>
|
||||
<span class="text-gray-600 text-xs ml-1">
|
||||
{{ story.published_date | moment("calendar") }}
|
||||
</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
@@ -93,4 +83,4 @@ export default {
|
||||
.dark-img {
|
||||
filter: brightness(90%);
|
||||
}
|
||||
</style>
|
||||
</style>
|
||||
|
Reference in New Issue
Block a user