npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ban12/tailwindcss-safe-area

v0.3.0

Published

A plugin for Tailwind CSS v3.2+ and v4 that provides utilities for safe area.

Readme

@ban12/tailwindcss-safe-area

A plugin for Tailwind CSS v3.2+ and v4 that provides utilities for safe area.

Installation

Install the plugin from npm:

npm install -D @ban12/tailwindcss-safe-area

With Tailwind CSS v3, add the plugin to your tailwind.config.js file:

// tailwind.config.js
module.exports = {
  theme: {
    // ...
  },
  plugins: [
    require('@ban12/tailwindcss-safe-area'),
    // ...
  ],
}

With Tailwind CSS v4, load the plugin from your CSS:

@import "tailwindcss";
@plugin "@ban12/tailwindcss-safe-area";

Usage

Supported css attributes top right bottom left margin padding margin-inline-start margin-inline-end padding-inline-start padding-inline-end scroll-margin and scroll-padding, pre-setting <meta name="viewport" content="width=device-width, initial-scale=1, viewport-fit=cover">:

<div class="top-safe mx-safe p-safe"></div>
.top-safe {
  top: env(safe-area-inset-top);
}

.mx-safe {
  margin-right: env(safe-area-inset-right);
  margin-left: env(safe-area-inset-left);
}

.p-safe {
  padding: env(safe-area-inset-top) env(safe-area-inset-right) env(safe-area-inset-bottom) env(safe-area-inset-left);
}

With max() and @supports

The max() CSS function lets you set the largest (most positive) value from a list of comma-separated expressions as the value of a CSS property value, the @supports CSS at-rule lets you specify CSS declarations that depend on a browser's support for CSS features:

<div class="top-safe-max-1 supports-[padding:max(0px)]:top-safe-max-1"></div>
.top-safe-max-1 {
  top: max(0.25rem, env(safe-area-inset-top));
}
@supports (padding: max(0px)) {
  .supports-\[padding\:max\(0px\)\]\:top-safe-max-1 {
    top: max(0.25rem, env(safe-area-inset-top));
  }
}

Reference

Class name and generated css attribute:

| Name | CSS | | ---------------------------------------------------------------- | ----------------------------------------------- | | top-safe mt-safe pt-safe [ms \| me \| ps \| pe]-safe-top | safe-area-inset-top | | right-safe mr-safe pr-safe [ms \| me \| ps \| pe]-safe-right | safe-area-inset-right | | bottom-safe mb-safe pb-safe [ms \| me \| ps \| pe]-safe-bottom | safe-area-inset-bottom | | left-safe ml-safe pl-safe [ms \| me \| ps \| pe]-safe-left | safe-area-inset-left | | m-safe p-safe scroll-m-safe scroll-p-safe | top \| right \| bottom \| left | | mx-safe px-safe scroll-mx-safe scroll-px-safe | safe-area-inset-left \| safe-area-inset-right | | my-safe py-safe scroll-my-safe scroll-py-safe | safe-area-inset-top \| safe-area-inset-bottom | | scroll-ms-safe scroll-ps-safe | safe-area-inset-left | | scroll-me-safe scroll-pe-safe | safe-area-inset-right |

Every utility also supports a -max-* form using the Tailwind spacing scale or an arbitrary value:

<div class="pb-safe-max-4 scroll-m-safe-max-[12px]"></div>