🚀 DAY 5 OF LAUNCH WEEK: Introducing Socket Firewall Enterprise.Learn more →
Socket
Book a DemoInstallSign in
Socket

@coopdigital/css-foundations

Package Overview
Dependencies
Maintainers
10
Versions
110
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@coopdigital/css-foundations

Co-op CSS Foundations

latest
Source
npmnpm
Version
7.1.4
Version published
Maintainers
10
Created
Source

Co-op CSS Foundations

Co-op CSS Foundations contains all the core CSS styles needed to build Co-op branded digital content. It brings together all the packages projects will need in one place. Components and custom styles should be included or written separately and decided on a project by project basis.

The foundations set the basic Co-op look and feel - they should be included in all Co-op services.

Installation

Install via NPM:

$ npm install @coopdigital/css-foundations --save

Usage

You can include CSS Foundations in your project by referencing it from your existing CSS via @import statement, i.e.:

@import "node_modules/@coopdigital/css-foundations/dist/foundations.css";

If you use PostCSS in your build pipeline, you can reference the sources directly like so:

@import "node_modules/@coopdigital/css-foundations/src/foundations.pcss";

If you use a postcss-import plugin, it gets even easier:

@import "@coopdigital/css-foundations";

Examples

Here's a bunch of examples, showing how you can integrate this CSS module in your project, based on most popular stacks of project. You can either use a post-processed and pre-built CSS form the dist directory, ot use PostCSS sources from the src dir.

The latter have certain dependencies, which should be consumed by your frontend toolkit to postprocess the CSS correctly.

Vue.js

In Vue, you can just reference it from a global component like so:

<style>
/* Import PostCSS source */
@import "~@coopdigital/css-foundations/src/foundations.pcss";
/* Import postprocessed distributable CSS */
@import "~@coopdigital/css-foundations/dist/foundations.css";
</style>

Development

CSS Foundations follows a modular architecture and as such is composed out of several CSS Modules. You are free to use either individual modules or load the entire framework into your project.

Modules

How to develop?

This package only serves as a master package for all individual CSS modules. Development should be done within individual package repositories, following general guidelines.

Changelog

6.2.1 (Feature release)

Feature Foundations-global - We’ve added a padding class so logo meets minimum tap target size.

Previous releases did not have notes

License

Copyright (c) 2021 Co-operative Group Limited. Licensed MIT.

FAQs

Package last updated on 13 Dec 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts