Prettified Code!

This commit is contained in:
khatabwedaa
2020-08-15 12:21:08 +00:00
committed by GitHub Action
parent cc4c6a445e
commit 48941bd470
5 changed files with 33 additions and 32 deletions

View File

@@ -4,32 +4,35 @@
### Resources
- [Tailwindcss](https://tailwindcss.com)
- [Heroicons](https://heroicons.dev)
- [CSS Icons](https://css.gg)
- [Tailwindcss](https://tailwindcss.com)
- [Heroicons](https://heroicons.dev)
- [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
```
### Authors
- **Mosab Ibrahim** [Github](https://github.com/Miaababikir)
- **Khatab Wedaa** [Github](https://github.com/khatabwedaa)
- **Mosab Ibrahim** [Github](https://github.com/Miaababikir)
- **Khatab Wedaa** [Github](https://github.com/khatabwedaa)

View File

@@ -1,4 +1,4 @@
module.exports = {
presets: ["@vue/cli-plugin-babel/preset"],
plugins: ["@babel/plugin-syntax-dynamic-import"],
presets: ["@vue/cli-plugin-babel/preset"],
plugins: ["@babel/plugin-syntax-dynamic-import"],
};

View File

@@ -1,7 +1,7 @@
module.exports = {
plugins: [
require("postcss-import"),
require("tailwindcss"),
require("autoprefixer"),
],
};
plugins: [
require("postcss-import"),
require("tailwindcss"),
require("autoprefixer"),
],
};

View File

@@ -9,17 +9,17 @@ 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" },
{ path: "/cards", component: Cards, name: "Cards" },
{ path: "/forms", component: Forms, name: "Forms" },
{ path: "/navbars", component: Navbars, name: "Navbars" },
{ path: "/headers", component: Headers, name: "Headers" },
{ path: "/sections", component: Sections, name: "Sections" },
{ path: "/paginations", component: Paginations, name: "Paginations" },
{ path: "/footers", component: Footers, name: "Footers" },
{ path: "/", redirect: "/alerts" },
{ path: "/alerts", component: Alerts, name: "Alerts" },
{ path: "/cards", component: Cards, name: "Cards" },
{ path: "/forms", component: Forms, name: "Forms" },
{ path: "/navbars", component: Navbars, name: "Navbars" },
{ path: "/headers", component: Headers, name: "Headers" },
{ path: "/sections", component: Sections, name: "Sections" },
{ path: "/paginations", component: Paginations, name: "Paginations" },
{ path: "/footers", component: Footers, name: "Footers" },
],
});
});

View File

@@ -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: [],
}
};