
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@nulogy/css
Advanced tools
A way to use the Nulogy Design System without having access to our React components.
yarn add @nulogy/css
<link rel="stylesheet" href="/node_modules/@nulogy/css/dist/nds.css" />
Note that the path will be different for your application.
There are two different types of CSS classes available: components and utility classes.
These are CSS classes to match the React components on nulogy.design. For example, to create an Alert, we could write:
<div class="Alert">
<div class="Alert__content">
<p class="Alert__title">Important information</p>
<p class="Alert__message">Details about important information</p>
</div>
</div>
Not all components are replicated. View the /src/components
directory to see what's available.
For components, we use the BEM naming convention whenever possible.
Utility classes do one thing and they do it very well. You can use these classes to apply Nulogy's theme to any element on your page.
For example, to make text Nulogy blue, we could use .nds-text--blue
.
Utility classes are prefixed with .nds-
.
All utilitity classes are available responsively by adding a breakpoint prefix to the beginning of the class, e.g:
.nds-font-size--large (for any screen size)
.nds@sm-font-size--large (768px and up)
.nds@md-font-size--large (1024px and up)
.nds@lg-font-size--large (1360px and up)
.nds@xl-font-size--large (1920px and up)
We don't actually host the CSS storybook anywhere at the moment. To see the full list of available classes and components along with usage examples:
$ git clone https://github.com/nulogy/design-system.git
$ cd design-system/packages/css
$ yarn
$ yarn start
This will open a storybook at http://localhost:9000.
FAQs
CSS for Nulogy Design System
We found that @nulogy/css demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 8 open source maintainers collaborating on the project.
Did you know?
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.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.