@mythril/css-framework
v1.0.0-alpha.2
Published
Mythril Design System CSS Framework
Downloads
3
Readme
Mythril CSS Framework
Standalone CSS framework for the Mythril Component Library. This is required when using the @mythril/vue-library as well.
Importing
This CSS framework can of course be imported anywhere, but since this is a vue-specific component library below is examples of importing to Vue3 and Nuxt3:
Importing into Vue
// main.js
import '@mythril/css-framework/style.css'
Importing into Nuxt
// nuxt.config.ts
export default defineNuxtConfig({
...
css: [
...
'@mythril/css-framework/style.css'
...
]
...
})