Tailwind Templates
  • Tailwindcss Templates
  • Alerts
  • Buttons
  • Cards
    • Pricing
    • Utility
    • Comments
  • Forms
  • Modals
  • Search boxes
  • Coming soon
    • Utilities
    • Landing pages
    • Navigation bars
    • Testimonials
Powered by GitBook
On this page
  1. Cards

Comments

PreviousUtilityNextForms

Last updated 6 years ago

Comments

<div class="shadow-md p-4 rounded">
	<div class="flex">
	  <img class="shadow sm:w-12 sm:h-12 w-10 h-10 rounded-full mr-4" src="../images/link.jpg" alt="Avatar">
	  <div>
		<h4 class="text-grey-darker">John</h4>
		<p class="text-grey-dark text-sm">10:00 AM - Apr 10, 2018 </p>
		<p class="leading-tight text-grey-darker mt-2">
		  Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Aenean commodo ligula eget dolor. </p>
	  </div>
	</div>
	<div class="mt-4">
	  <button class="text-grey-dark hover:text-grey-darker mr-2">
		<i class="material-icons">
		  favorite_border
		</i>
	  </button>
	  <button class="text-grey-dark hover:text-grey-darker mr-2">
		<i class="material-icons">
		  add_comment
		</i>
	  </button>
	</div>
</div>