Published on

Here Are 6 Ways To Make A Share Modal With Tailwind CSS

Tags
Share Modal

What is Tailwind CSS?

Tailwind CSS is a utility-first CSS framework that focuses on creating personalized user interfaces quickly. It can gives you all the building blocks you are able to create personalized designs without having to fight to override irritating opinionated styles. Also, Tailwind CSS is a highly configurable, low-level CSS framework.

The description of Share Modal ui component

Modal to share in the socials networks

Why use Tailwind CSS to make a Share Modal ui component?

  • It can make the building process of Share Modal ui component faster and more easily.
  • Enables building complex responsive layouts and components freely.
  • Minimum lines of CSS code in Share Modal component file.

The preview of Share Modal ui component

Free download of the Share Modal's source code

The source code of Share Modal ui component

<!-- CONTAINER MODAL-->
    <div class="min-h-screen bg-gray-800 flex items-center justify-center">
      <!--MODAL ITEM-->
      <div class="bg-gray-100 w-full mx-4 p-4 rounded-xl md:w-1/2 lg:w-1/3">
        <!--MODAL HEADER-->
        <div
          class="flex justify-between items center border-b border-gray-200 py-3"
        >
          <div class="flex items-center justify-center">
            <p class="text-xl font-bold text-gray-800">Share Modal</p>
          </div>

          <div
            class="bg-gray-300 hover:bg-gray-500 cursor-pointer hover:text-gray-300 font-sans text-gray-500 w-8 h-8 flex items-center justify-center rounded-full"
          >
            x
          </div>
        </div>

        <!--MODAL BODY-->
        <div class="my-4">
          <p class="text-sm">Share this link via</p>

          <div class="flex justify-around my-4">
            <!--FACEBOOK ICON-->
            <div
              class="border hover:bg-[#1877f2] w-12 h-12 fill-[#1877f2] hover:fill-white border-blue-200 rounded-full flex items-center justify-center shadow-xl hover:shadow-blue-500/50 cursor-pointer"
            >
              <svg
                xmlns="http://www.w3.org/2000/svg"
                width="24"
                height="24"
                viewBox="0 0 24 24"
              >
                <path
                  d="M13.397 20.997v-8.196h2.765l.411-3.209h-3.176V7.548c0-.926.258-1.56 1.587-1.56h1.684V3.127A22.336 22.336 0 0 0 14.201 3c-2.444 0-4.122 1.492-4.122 4.231v2.355H7.332v3.209h2.753v8.202h3.312z"
                ></path>
              </svg>
            </div>
            <!--TWITTER ICON-->
            <div
              class="border hover:bg-[#1d9bf0] w-12 h-12 fill-[#1d9bf0] hover:fill-white border-blue-200 rounded-full flex items-center justify-center shadow-xl hover:shadow-sky-500/50 cursor-pointer"
            >
              <svg
                xmlns="http://www.w3.org/2000/svg"
                width="24"
                height="24"
                viewBox="0 0 24 24"
              >
                <path
                  d="M19.633 7.997c.013.175.013.349.013.523 0 5.325-4.053 11.461-11.46 11.461-2.282 0-4.402-.661-6.186-1.809.324.037.636.05.973.05a8.07 8.07 0 0 0 5.001-1.721 4.036 4.036 0 0 1-3.767-2.793c.249.037.499.062.761.062.361 0 .724-.05 1.061-.137a4.027 4.027 0 0 1-3.23-3.953v-.05c.537.299 1.16.486 1.82.511a4.022 4.022 0 0 1-1.796-3.354c0-.748.199-1.434.548-2.032a11.457 11.457 0 0 0 8.306 4.215c-.062-.3-.1-.611-.1-.923a4.026 4.026 0 0 1 4.028-4.028c1.16 0 2.207.486 2.943 1.272a7.957 7.957 0 0 0 2.556-.973 4.02 4.02 0 0 1-1.771 2.22 8.073 8.073 0 0 0 2.319-.624 8.645 8.645 0 0 1-2.019 2.083z"
                ></path>
              </svg>
            </div>
            <!--INSTAGRAM ICON-->
            <div
              class="border hover:bg-[#bc2a8d] w-12 h-12 fill-[#bc2a8d] hover:fill-white border-pink-200 rounded-full flex items-center justify-center shadow-xl hover:shadow-pink-500/50 cursor-pointer"
            >
              <svg
                xmlns="http://www.w3.org/2000/svg"
                width="24"
                height="24"
                viewBox="0 0 24 24"
              >
                <path
                  d="M11.999 7.377a4.623 4.623 0 1 0 0 9.248 4.623 4.623 0 0 0 0-9.248zm0 7.627a3.004 3.004 0 1 1 0-6.008 3.004 3.004 0 0 1 0 6.008z"
                ></path>
                <circle cx="16.806" cy="7.207" r="1.078"></circle>
                <path
                  d="M20.533 6.111A4.605 4.605 0 0 0 17.9 3.479a6.606 6.606 0 0 0-2.186-.42c-.963-.042-1.268-.054-3.71-.054s-2.755 0-3.71.054a6.554 6.554 0 0 0-2.184.42 4.6 4.6 0 0 0-2.633 2.632 6.585 6.585 0 0 0-.419 2.186c-.043.962-.056 1.267-.056 3.71 0 2.442 0 2.753.056 3.71.015.748.156 1.486.419 2.187a4.61 4.61 0 0 0 2.634 2.632 6.584 6.584 0 0 0 2.185.45c.963.042 1.268.055 3.71.055s2.755 0 3.71-.055a6.615 6.615 0 0 0 2.186-.419 4.613 4.613 0 0 0 2.633-2.633c.263-.7.404-1.438.419-2.186.043-.962.056-1.267.056-3.71s0-2.753-.056-3.71a6.581 6.581 0 0 0-.421-2.217zm-1.218 9.532a5.043 5.043 0 0 1-.311 1.688 2.987 2.987 0 0 1-1.712 1.711 4.985 4.985 0 0 1-1.67.311c-.95.044-1.218.055-3.654.055-2.438 0-2.687 0-3.655-.055a4.96 4.96 0 0 1-1.669-.311 2.985 2.985 0 0 1-1.719-1.711 5.08 5.08 0 0 1-.311-1.669c-.043-.95-.053-1.218-.053-3.654 0-2.437 0-2.686.053-3.655a5.038 5.038 0 0 1 .311-1.687c.305-.789.93-1.41 1.719-1.712a5.01 5.01 0 0 1 1.669-.311c.951-.043 1.218-.055 3.655-.055s2.687 0 3.654.055a4.96 4.96 0 0 1 1.67.311 2.991 2.991 0 0 1 1.712 1.712 5.08 5.08 0 0 1 .311 1.669c.043.951.054 1.218.054 3.655 0 2.436 0 2.698-.043 3.654h-.011z"
                ></path>
              </svg>
            </div>

            <!--WHATSAPP ICON-->
            <div
              class="border hover:bg-[#25D366] w-12 h-12 fill-[#25D366] hover:fill-white border-green-200 rounded-full flex items-center justify-center shadow-xl hover:shadow-green-500/50 cursor-pointer"
            >
              <svg
                xmlns="http://www.w3.org/2000/svg"
                width="24"
                height="24"
                viewBox="0 0 24 24"
              >
                <path
                  fill-rule="evenodd"
                  clip-rule="evenodd"
                  d="M18.403 5.633A8.919 8.919 0 0 0 12.053 3c-4.948 0-8.976 4.027-8.978 8.977 0 1.582.413 3.126 1.198 4.488L3 21.116l4.759-1.249a8.981 8.981 0 0 0 4.29 1.093h.004c4.947 0 8.975-4.027 8.977-8.977a8.926 8.926 0 0 0-2.627-6.35m-6.35 13.812h-.003a7.446 7.446 0 0 1-3.798-1.041l-.272-.162-2.824.741.753-2.753-.177-.282a7.448 7.448 0 0 1-1.141-3.971c.002-4.114 3.349-7.461 7.465-7.461a7.413 7.413 0 0 1 5.275 2.188 7.42 7.42 0 0 1 2.183 5.279c-.002 4.114-3.349 7.462-7.461 7.462m4.093-5.589c-.225-.113-1.327-.655-1.533-.73-.205-.075-.354-.112-.504.112s-.58.729-.711.879-.262.168-.486.056-.947-.349-1.804-1.113c-.667-.595-1.117-1.329-1.248-1.554s-.014-.346.099-.458c.101-.1.224-.262.336-.393.112-.131.149-.224.224-.374s.038-.281-.019-.393c-.056-.113-.505-1.217-.692-1.666-.181-.435-.366-.377-.504-.383a9.65 9.65 0 0 0-.429-.008.826.826 0 0 0-.599.28c-.206.225-.785.767-.785 1.871s.804 2.171.916 2.321c.112.15 1.582 2.415 3.832 3.387.536.231.954.369 1.279.473.537.171 1.026.146 1.413.089.431-.064 1.327-.542 1.514-1.066.187-.524.187-.973.131-1.067-.056-.094-.207-.151-.43-.263"
                ></path>
              </svg>
            </div>

            <!--TELEGRAM ICON-->
            <div
              class="border hover:bg-[#229ED9] w-12 h-12 fill-[#229ED9] hover:fill-white border-sky-200 rounded-full flex items-center justify-center shadow-xl hover:shadow-sky-500/50 cursor-pointer"
            >
              <svg
                xmlns="http://www.w3.org/2000/svg"
                width="24"
                height="24"
                viewBox="0 0 24 24"
              >
                <path
                  d="m20.665 3.717-17.73 6.837c-1.21.486-1.203 1.161-.222 1.462l4.552 1.42 10.532-6.645c.498-.303.953-.14.579.192l-8.533 7.701h-.002l.002.001-.314 4.692c.46 0 .663-.211.921-.46l2.211-2.15 4.599 3.397c.848.467 1.457.227 1.668-.785l3.019-14.228c.309-1.239-.473-1.8-1.282-1.434z"
                ></path>
              </svg>
            </div>
          </div>

          <p class="text-sm">Or copy link</p>
          <!--BOX LINK-->
          <div class="border-2 border-gray-200 flex justify-between items-center mt-4 py-2">
            <svg
              xmlns="http://www.w3.org/2000/svg"
              width="24"
              height="24"
              viewBox="0 0 24 24"
              class="fill-gray-500 ml-2"
            >
              <path
                d="M8.465 11.293c1.133-1.133 3.109-1.133 4.242 0l.707.707 1.414-1.414-.707-.707c-.943-.944-2.199-1.465-3.535-1.465s-2.592.521-3.535 1.465L4.929 12a5.008 5.008 0 0 0 0 7.071 4.983 4.983 0 0 0 3.535 1.462A4.982 4.982 0 0 0 12 19.071l.707-.707-1.414-1.414-.707.707a3.007 3.007 0 0 1-4.243 0 3.005 3.005 0 0 1 0-4.243l2.122-2.121z"
              ></path>
              <path
                d="m12 4.929-.707.707 1.414 1.414.707-.707a3.007 3.007 0 0 1 4.243 0 3.005 3.005 0 0 1 0 4.243l-2.122 2.121c-1.133 1.133-3.109 1.133-4.242 0L10.586 12l-1.414 1.414.707.707c.943.944 2.199 1.465 3.535 1.465s2.592-.521 3.535-1.465L19.071 12a5.008 5.008 0 0 0 0-7.071 5.006 5.006 0 0 0-7.071 0z"
              ></path>
            </svg>

            <input class="w-full outline-none bg-transparent" type="text" placeholder="link" value="https://boxicons.com/?query=link">

            <button class="bg-indigo-500 text-white rounded text-sm py-2 px-5 mr-2 hover:bg-indigo-600">
                Copy
            </button>
          </div>
        </div>
      </div>
    </div>

How to make a Share Modal with Tailwind CSS?

Install tailwind css of verion 3.0.18

Use the script html tag to import the script of Tailwind CSS of the version 3.0.18

<script src="https://cdn.tailwindcss.com"></script>

All the unility class needed to make a Share Modal component

  • min-h-screen
  • bg-gray-800
  • flex
  • bg-gray-100
  • w-full
  • mx-4
  • p-4
  • md:w-1/2
  • lg:w-1/3
  • border-b
  • border-gray-200
  • py-3
  • text-xl
  • text-gray-800
  • bg-gray-300
  • hover:bg-gray-500
  • hover:text-gray-300
  • text-gray-500
  • w-8
  • h-8
  • my-4
  • text-sm
  • hover:bg-[#1877f2]
  • w-12
  • h-12
  • border-blue-200
  • hover:bg-[#1d9bf0]
  • hover:bg-[#bc2a8d]
  • border-pink-200
  • hover:bg-[#25D366]
  • border-green-200
  • hover:bg-[#229ED9]
  • border-sky-200
  • border-2
  • mt-4
  • py-2
  • ml-2
  • bg-transparent
  • bg-indigo-500
  • text-white
  • px-5
  • mr-2
  • hover:bg-indigo-600

43 steps to make a Share Modal component with Tailwind CSS

  1. Set the minimum width/height of an element using the min-h-screen utilities.

  2. Control the background color of an element to gray-800 using the bg-gray-800 utilities.

  3. Use flex to create a block-level flex container.

  4. Control the background color of an element to gray-100 using the bg-gray-100 utilities.

  5. Use w-full to set an element to a 100% based width.

  6. Control the horizontal margin of an element to 1rem using the mx-4 utilities.

  7. Control the padding on all sides of an element to 1rem using the p-4 utilities.

  8. Use md:w-1/2 to set an element to a fixed width(1/2) at only medium screen sizes.

  9. Use lg:w-1/3 to set an element to a fixed width(1/3) at only large screen sizes.

  10. Control the border color of an element to b using the border-b utilities.

  11. Control the border color of an element to gray-200 using the border-gray-200 utilities.

  12. Control the vertical padding of an element to 0.75rem using the py-3 utilities.

  13. Control the text color of an element to xl using the text-xl utilities.

  14. Control the text color of an element to gray-800 using the text-gray-800 utilities.

  15. Control the background color of an element to gray-300 using the bg-gray-300 utilities.

  16. Control the background color of an element to gray-500 using the hover:bg-gray-500 utilities on hover.

  17. Control the text color of an element to gray-300 on hover using the hover:text-gray-300 utilities.

  18. Control the text color of an element to gray-500 using the text-gray-500 utilities.

  19. Use w-8 to set an element to a fixed width(2rem).

  20. Use h-8 to set an element to a fixed height(2rem).

  21. Control the vertical margin of an element to 1rem using the my-4 utilities.

  22. Control the text color of an element to sm using the text-sm utilities.

  23. Control the background color of an element to [#1877f2] using the hover:bg-[#1877f2] utilities on hover.

  24. Use w-12 to set an element to a fixed width(3rem).

  25. Use h-12 to set an element to a fixed height(3rem).

  26. Control the border color of an element to blue-200 using the border-blue-200 utilities.

  27. Control the background color of an element to [#1d9bf0] using the hover:bg-[#1d9bf0] utilities on hover.

  28. Control the background color of an element to [#bc2a8d] using the hover:bg-[#bc2a8d] utilities on hover.

  29. Control the border color of an element to pink-200 using the border-pink-200 utilities.

  30. Control the background color of an element to [#25D366] using the hover:bg-[#25D366] utilities on hover.

  31. Control the border color of an element to green-200 using the border-green-200 utilities.

  32. Control the background color of an element to [#229ED9] using the hover:bg-[#229ED9] utilities on hover.

  33. Control the border color of an element to sky-200 using the border-sky-200 utilities.

  34. Control the border color of an element to 0.5rem using the border-2 utilities.

  35. Control the margin on top side of an element to 1rem using the mt-4 utilities.

  36. Control the vertical padding of an element to 0.5rem using the py-2 utilities.

  37. Control the margin on left side of an element to 0.5rem using the ml-2 utilities.

  38. Control the background color of an element to transparent using the bg-transparent utilities.

  39. Control the background color of an element to indigo-500 using the bg-indigo-500 utilities.

  40. Control the text color of an element to white using the text-white utilities.

  41. Control the horizontal padding of an element to 1.25rem using the px-5 utilities.

  42. Control the margin on right side of an element to 0.5rem using the mr-2 utilities.

  43. Control the background color of an element to indigo-600 using the hover:bg-indigo-600 utilities on hover.

Conclusion

The above is a step-by-step tutorial on how to use Tailwind CSS to make a Share Modal components, learn and follow along to implement your own components.