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

@jeroenpeeters/picoui

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@jeroenpeeters/picoui

## CSS classes based on pico

1.0.0-beta
next
latest
Source
npm
Version published
Maintainers
1
Created
Source

💖 picoui

CSS classes based on pico

A set of classes based on the semantic UI provided by pico that intends with as minimal extension to pico as possible provide a toolkit for building on top of headless components.

Installation

CDN

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css" />
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@jeroenpeeters/picoui@1/css/ui/picoui.min.css" />

npm

pnpm add @picocss/pico @jeroenpeeters/picoui
yarn add @picocss/pico @jeroenpeeters/picoui
npm add @picocss/pico @jeroenpeeters/picoui

Usage

As the Installation guides already give away, picoui is not intended to be used in isolation. Please make sure pico itself is installed as well.

<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="color-scheme" content="light dark" />
    <link rel="stylesheet" href="css/pico.min.css">
    <link rel="stylesheet" href="css/picoui.min.css">
    <title>Hello world!</title>
  </head>
  <body>
    <main class="container">
      <div class="card">
        <h1>Hello world!</h1>
      </div>
    </main>
  </body>
</html>

FAQs

Package last updated on 16 Apr 2024

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