mirror of
https://github.com/bakateam/merakiui.git
synced 2025-12-09 15:05:34 +00:00
Prettified Code!
This commit is contained in:
committed by
GitHub Action
parent
cc4c6a445e
commit
48941bd470
@@ -9,21 +9,25 @@
|
||||
- [CSS Icons](https://css.gg)
|
||||
|
||||
### Project setup
|
||||
|
||||
```
|
||||
npm install
|
||||
```
|
||||
|
||||
### Compiles and hot-reloads for development
|
||||
|
||||
```
|
||||
npm run serve
|
||||
```
|
||||
|
||||
### Compiles and minifies for production
|
||||
|
||||
```
|
||||
npm run build
|
||||
```
|
||||
|
||||
### Lints and fixes files
|
||||
|
||||
```
|
||||
npm run lint
|
||||
```
|
||||
@@ -32,4 +36,3 @@ npm run lint
|
||||
|
||||
- **Mosab Ibrahim** [Github](https://github.com/Miaababikir)
|
||||
- **Khatab Wedaa** [Github](https://github.com/khatabwedaa)
|
||||
|
||||
|
||||
@@ -9,8 +9,8 @@ const Sections = () => import("./components/categories/Sections");
|
||||
const Paginations = () => import("./components/categories/Paginations");
|
||||
const Footers = () => import("./components/categories/Footers");
|
||||
|
||||
export default new VueRouter({
|
||||
mode: 'history',
|
||||
export default new VueRouter({
|
||||
mode: "history",
|
||||
routes: [
|
||||
{ path: "/", redirect: "/alerts" },
|
||||
{ path: "/alerts", component: Alerts, name: "Alerts" },
|
||||
@@ -22,4 +22,4 @@ const Footers = () => import("./components/categories/Footers");
|
||||
{ path: "/paginations", component: Paginations, name: "Paginations" },
|
||||
{ path: "/footers", component: Footers, name: "Footers" },
|
||||
],
|
||||
});
|
||||
});
|
||||
|
||||
@@ -1,17 +1,15 @@
|
||||
module.exports = {
|
||||
purge: [
|
||||
'./src/**/*.vue',
|
||||
],
|
||||
purge: ["./src/**/*.vue"],
|
||||
theme: {
|
||||
extend: {
|
||||
fontFamily: {
|
||||
roboto: ['Roboto'],
|
||||
roboto: ["Roboto"],
|
||||
},
|
||||
spacing: {
|
||||
'96': '24rem',
|
||||
"96": "24rem",
|
||||
},
|
||||
},
|
||||
},
|
||||
variants: {},
|
||||
plugins: [],
|
||||
}
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user