Compare commits
No commits in common. "dd177a36ec62c5feb5835ea7896c65a1bc16458f" and "55cd8743c69ee4a1052435506976b38c0ffdf82f" have entirely different histories.
dd177a36ec
...
55cd8743c6
Before Width: | Height: | Size: 167 KiB |
Before Width: | Height: | Size: 693 KiB |
Before Width: | Height: | Size: 569 KiB |
Before Width: | Height: | Size: 360 KiB |
Before Width: | Height: | Size: 509 KiB |
Before Width: | Height: | Size: 429 KiB |
Before Width: | Height: | Size: 233 KiB |
Before Width: | Height: | Size: 440 KiB |
Before Width: | Height: | Size: 440 KiB |
Before Width: | Height: | Size: 752 KiB |
Before Width: | Height: | Size: 212 KiB |
Before Width: | Height: | Size: 871 KiB |
Before Width: | Height: | Size: 326 KiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 296 KiB |
Before Width: | Height: | Size: 935 KiB |
Before Width: | Height: | Size: 319 KiB |
Before Width: | Height: | Size: 523 KiB |
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 169 KiB |
Before Width: | Height: | Size: 489 KiB |
Before Width: | Height: | Size: 162 KiB |
Before Width: | Height: | Size: 374 KiB |
Before Width: | Height: | Size: 224 KiB |
Before Width: | Height: | Size: 672 KiB |
Before Width: | Height: | Size: 672 KiB |
Before Width: | Height: | Size: 546 KiB |
Before Width: | Height: | Size: 1.3 MiB |
Before Width: | Height: | Size: 1.1 MiB |
Before Width: | Height: | Size: 375 KiB |
Before Width: | Height: | Size: 197 KiB |
Before Width: | Height: | Size: 949 KiB |
Before Width: | Height: | Size: 78 KiB |
Before Width: | Height: | Size: 569 KiB |
Before Width: | Height: | Size: 725 KiB |
Before Width: | Height: | Size: 309 KiB |
Before Width: | Height: | Size: 584 KiB |
Before Width: | Height: | Size: 194 KiB |
Before Width: | Height: | Size: 236 KiB |
Before Width: | Height: | Size: 153 KiB |
Before Width: | Height: | Size: 197 KiB |
Before Width: | Height: | Size: 58 KiB |
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div style="display: flex;flex-direction: row" >
|
||||
<div style="display: flex;flex-direction: row" >
|
||||
<LeftBar></LeftBar>
|
||||
<router-view style="width: 85vw;"></router-view>
|
||||
</div>
|
||||
|
@ -1,13 +1,11 @@
|
||||
module.exports = {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
||||
"./node_modules/flowbite/**/*.js"
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [
|
||||
require('flowbite/plugin')
|
||||
],
|
||||
}
|
||||
// /** @type {import('tailwindcss').Config} */
|
||||
export default {
|
||||
content: [
|
||||
"./index.html",
|
||||
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
||||
],
|
||||
theme: {
|
||||
extend: {},
|
||||
},
|
||||
plugins: [],
|
||||
}
|