New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@atlaskit/reduced-ui-pack

Package Overview
Dependencies
Maintainers
0
Versions
139
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@atlaskit/reduced-ui-pack

CSS classes which provide styling for a reduced number of Atlaskit components.

19.0.2
latest
Source
npm
Version published
Weekly downloads
3.8K
-27.01%
Maintainers
0
Weekly downloads
 
Created
Source

Reduced UI Pack

This package exports a CSS file which includes some CSS classes that provide styling for a reduced number of Atlaskit components.

There is also an icon SVG sprite sheet included. See the "Try it out" section below for usage instructions.

Installation

npm install reduced-ui-pack

Make sure you're also including the css-reset stylesheet before these styles. The css-reset stylesheet provides the core typography rules which reduced-ui-pack builds upon. Install it with:

npm install @atlaskit/css-reset

Using the component

Importing

The reduced-ui-pack package can be consumed via the dist, or in Webpack.

Importing in Webpack
import 'reduced-ui-pack';

The Webpack style loader should then place the CSS within the HEAD of your HTML element.

Importing in HTML
<html>
	<head>
		<link rel="stylesheet" href="node_modules/@atlaskit/css-reset/dist/bundle.css" />
		<link rel="stylesheet" href="node_modules/reduced-ui-pack/dist/bundle.css" />
	</head>
	<body>
		<!-- ... -->
	</body>
</html>

FAQs

Package last updated on 06 Mar 2025

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