Skip to content
This repository has been archived by the owner on Aug 21, 2023. It is now read-only.

Blue - v0.0.9

Compare
Choose a tag to compare
@ItsJonQ ItsJonQ released this 03 Sep 16:13
· 3341 commits to main since this release

Updates

Add hs-app theme stylesheet

This update adds an hs-app stylesheet (.scss/.css) for Blue. The idea for this is to allow for Blue components to be seamlessly dropped into hs-app with no/minimal issues in UI consistency.

Typically, it should be up to the consumer of this package (hs-app) to write the custom CSS necessary to override Blue, as Blue should be application agnostic. However, I think this approach is fine, and is the easiest/fastest way for us to start integrating into multiple projects.

Minimal adjustments were made to the actual React JS components. Most of these changes are SCSS based, and are isolated within the new hs-app theme directory under src/styles/themes/hs-app.

The idea for this came about during a call I had with @knicklabs.

To use the hs-app theme stylesheet, simply import add it to the project's main .scss in addition to blue.

Example
...

@import "blue";      
@import "blue.hs-app";

...