app-ui / layout / cards

Well Edge To Edge On Mobile

← All blocks
10-well-edge-to-edge-on-mobile.jsx
export default function Example() {
  return (
    <>
      {/* Be sure to use this with a layout container that is full-width on mobile */}
      <div className="overflow-hidden bg-gray-50 sm:rounded-lg dark:bg-gray-800/50">
        <div className="px-4 py-5 sm:p-6">{/* Content goes here */}</div>
      </div>
    </>
  )
}