New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

dpc-bootstrap

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

dpc-bootstrap

Contains various scss utilities that can be used to help start up your applications.

latest
Source
npmnpm
Version
2.0.1
Version published
Maintainers
1
Created
Source

dpc-bootstrap

dpc-bootstrap is a collection of helpful sass files to get your project up and running quickly.

  • Abstracts away the repetitive chunks of code that you use between different files.
  • Caters for different project structures out the box.
  • Completely customisable and extendable to suit your own projects.

Examples

Centering an element

Instead of:

.myClass {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

Just use:

.myClass {
  @include center-self;
}

Pseudo selectors

Instead of:

.anotherClass {
  position: relative;

  &::after {
    position: absolute;
    content: '';
    // Your code
  }
}

Just use:

.anotherClass {
  @include pseudo(after) {
    // Your code
  }
}

How to use it

Get started by installing the package globally using npm install -g dpc-bootstrap.

If installing in to an Angular project:

  • Make sure you are in the root of the Angular project, then in the command line run dpc-bootstrap sass
  • You will be presented with a list of options, choose Angular and it will install the files in the src/assets/styles folder.

WARNING: If you have any files or folders in this directory already, they may be replaced if their naming collides with the naming of the files in this package. To avoid this, follow the installation instructions for all other projects and then move it safely in to the desired folder.

  • To use any of the variables or mixins in an Angular component, you must include the following line at the top of the .scss file:
@import 'src/assets/styles/themes';

Installation to any other project:

  • In the command line, navigate to the folder that you want the files to be installed to.
  • Run dpc bootstrap sass, and choose Default from the displayed options.
  • Add an import to your main .scss file for the project.

NOTE: If you want to use the index sass file as your primary sass file, remove the underscore from the file name.

FAQs

Package last updated on 16 Nov 2019

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