1.0.1 • Published 1 year ago

gentle-ui v1.0.1

Weekly downloads
-
License
BSD-3-Clause
Repository
github
Last release
1 year ago

Gentle UI

GentleUI is a user interface design library that emphasizes rounded corners and a poetic aesthetic.

It is designed to provide developers with a unique and elegant design that can enhance the overall look and feel of their software applications.

The library is built with stability in mind, providing a solid base for the developer to build on, while the rounded corners give a sense of fluidity and softness to the final product.

usage

1. set default vars and functions

In vite.config.ts

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { addFunctionsAndVars } from "gentle-ui"

export default defineConfig({
  plugins: [vue()],
  css: {
    preprocessorOptions: {
      scss: {
        additionalData:
          addFunctionsAndVars(),
      },
    },
  },
})

2. set default style

In main.ts or App.vue[script]

import "gentle-ui/base.scss";

Else App.vue[style.scss]

@import "gentle-ui/base.scss";

3. get base module

In Any.vue[script]

import gentleUi from "gentle-ui/base.module.scss";
import { Block, /*Other...*/ } from "gentle-ui";
1.0.1

1 year ago

1.0.0

1 year ago