Skip to content

Latest commit

 

History

History
43 lines (34 loc) · 796 Bytes

index.md

File metadata and controls

43 lines (34 loc) · 796 Bytes

Pycord UI (CSS)

The CSS implementation of the Pycord UI

Purpose

Pycord UI is made to centralize the codebase for Pycord's UI for the web and make all of Pycord's web interfaces consistent.

Installation

# NPM
$ npm install @pycord/pycui sass

# Yarn
$ yarn add @pycord/pycui sass

Instantiation

@use 'node_modules/@pycord/pycui';

@include pycui.init() {
  // Components go here...
}

When instantiating components:

@use 'node_modules/@pycord/pycui';
@use 'node_modules/@pycord/pycui/pyc-button';

@include pycui.init() {
  @include pyc-button.render();
  ...
}

Components