@alanlu-dev/scss

1.0.3 • Public • Published

@alanlu-dev/scss

Version Downloads License

Shareable SCSS configuration.

Installation

pnpm add -D @alanlu-dev/scss

Usage

Nuxt.js

Create a nuxt.config.js file in the root of your project:

export default defineNuxtConfig({
  css: [
    '@alanlu-dev/scss',
  ],
  vite: {
    css: {
      preprocessorOptions: {
        scss: {
          additionalData: '@use "@alanlu-dev/scss/src/abstracts" as *;',
        },
      },
    },
  },
})

SCSS-7-1-pattern

File names

  • Start your file name with an underscore
  • Use hyphens for your file name: _user-profile.scss

File architecture

Abstracts

  • The abstracts folder gathers all Sass tools and helpers used across the project
  • Every global variable, function, mixin and placeholder should be put in here

Vendors

  • The vendors folder containing all the CSS files from external libraries and frameworks

Base

  • The base folder holds what we might call the boilerplate code for the project
  • In there, you might find the reset file, some typographic rules, and probably a stylesheet defining some standard styles for commonly used HTML elements

Components

  • The components folder is more focused on widgets
  • It contains all kind of specific modules like a slider, a loader, a widget, and basically anything along those lines
  • There are usually a lot of files in components since the whole application should be mostly composed of tiny modules

Layout

  • The layout folder contains everything that takes part in laying out the application
  • This folder could have stylesheets for the main parts of the application

Vendors Extensions

  • If you have to override or extend a section of any vendor, you need to use the vendors-extensions folder
  • Inside this folder the files must be named exactly as the vendors they overwrite

Pages

  • If you have page-specific styles, it is better to put them in a pages folder, in a file named after the page

Themes

  • On large applications, it is not unusual to have different themes based on a state
  • Add inside the themes folder a different file for every state

Readme

Keywords

none

Package Sidebar

Install

npm i @alanlu-dev/scss

Weekly Downloads

10

Version

1.0.3

License

MIT

Unpacked Size

9.94 kB

Total Files

35

Last publish

Collaborators

  • u0124024