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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@billow/sass-utilities

v1.1.0

Published

Everyday SASS utilities

Downloads

17

Readme

SASS Utilities

A collection of SASS utilities for Billow apps. Suited for use in Bulma environments, where the additional functionality is often required. However, this package is framework-agnostic, and can be used to compliment others.

Install with npm install @billow/sass-utilities.

Still a work in progress — suggestions welcome.

Usage

Import the entire toolset:

@import "~@billow/sass-utilities";

Set some variables before importing (see variables.sass for a list of overridables):

$additional-spacing-rems: '3', '4', '5', '6';

@import "~@billow/sass-utilities";

Experimental CSS Grid

Whilst it works efficiently, thanks to the browser, this feature isn’t really production-ready yet. Reason being: class names may change at any time if new features are implemented. The aim is to not have this happen, but it is possible.

So, if you’d like to drop this in a production app, simply copy the contents of the grid.sass file into one of your own stlysheets.

In the meantime, pull it directly from th package to play with it:

@import "~@billow/sass-utilities";
@import "~@billow/sass-utilities/src/grid";

When stable, this will be added to the main stylesheet loader.

Side note: if Bulma releases a really good implementation of CSS grid, this feature may be removed altogether. Just sayin’.

Work with the demo

$ cd demo
$ npm install
$ npx poi