Socket
Socket
Sign inDemoInstall

codyframe

Package Overview
Dependencies
0
Maintainers
1
Versions
9
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 4.0.0 to 4.0.1

main/scss/reset.scss

1

gulpfile.js

@@ -50,3 +50,4 @@ var gulp = require('gulp');

if(file.includes('config.scss') || file.includes('util.scss')) compileGlobals('util');
if(file.includes('reset.scss')) compileGlobals('reset');
});
}));
{
"name": "codyframe",
"version": "4.0.0",
"version": "4.0.1",
"description": "The intuitive CSS framework.",
"keywords": [
"html",
"css",
"scss",
"sass",
"framework",
"css-framework",
"front-end",
"responsive",
"utility-classes",
"codyhouse"
],
"scripts": {

@@ -8,2 +21,3 @@ "gulp": "gulp",

},
"license": "MIT",
"devDependencies": {

@@ -16,3 +30,8 @@ "autoprefixer": "^9.4.6",

"sass-embedded": "^1.0.0"
},
"homepage": "https://codyhouse.co",
"repository": {
"type": "git",
"url": "git+https://github.com/codyhouse/codyframe.git"
}
}

@@ -15,7 +15,7 @@ # CodyFrame

If you prefer working with SASS, create a style.scss file and import CodyFrame:
If you prefer working with SASS, create a style.scss file and import the CodyFrame files:
```scss
@use 'https://unpkg.com/codyframe/main/css/reset.css'; // ← reset
@use 'https://unpkg.com/codyframe/main/scss/config' as *; // ← customize the framework
@use 'reset'; // ← reset
@use 'config' as *; // ← customize the framework

@@ -30,7 +30,32 @@ // ↓ copy & modify these templates locally

@use 'https://unpkg.com/codyframe/main/scss/util'; // ← utility classes
@use 'util'; // ← utility classes
````
The **_config.scss** file is used to customize the framework (i.e., to edit the breakpoints or to change the spacing scale). More info in our [documentation](https://codyhouse.co/ds/docs/framework).
The **_config.scss** file is used to customize the framework (i.e., to edit the breakpoints or to change the spacing scale).
Example:
```scss
@use 'reset';
@use 'config' as * with (
$breakpoints: (
'sm': '48rem',
'md': '64rem',
'lg': '80rem'
),
$font-family: (
'primary': 'Inter, system-ui, sans-serif'
),
$font-size: (
'sm': '0.8125rem',
'base': '1rem',
'md': '1.1875rem',
'lg': '1.4375rem',
'2xl': '2.0625rem'
)
);
// ...
```
If you prefer working with CSS (without a preprocessor):

@@ -62,8 +87,17 @@

If you install CodyFrame as npm module, remember to change the CDN links with the paths to the node module files:
If you install CodyFrame as npm module, import the reset, config, and util modules from the node package:
```scss
@use 'https://unpkg.com/codyframe/main/css/reset.css';
// ↓
@use '../../../node_modules/codyframe/main/css/reset.css';
@use '../../../node_modules/codyframe/main/scss/reset';
@use '../../../node_modules/codyframe/main/scss/config' as *;
// ↓ copy & modify these templates locally
@use 'typography';
@use 'icons';
@use 'buttons';
@use 'forms';
// ← import here the CodyHouse components
@use '../../../node_modules/codyframe/main/scss/util';
```

@@ -70,0 +104,0 @@

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc