Skip to content
This repository has been archived by the owner on Oct 14, 2024. It is now read-only.

Commit

Permalink
crater-invoice-inc#227: Improved dark-mode just a tiny bit
Browse files Browse the repository at this point in the history
  • Loading branch information
nielsdrost7 committed Jan 27, 2024
1 parent 7b9c7c3 commit 74aa35b
Show file tree
Hide file tree
Showing 6 changed files with 1,367 additions and 1,092 deletions.
11 changes: 6 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"private": true,
"scripts": {
"dev": "vite",
"build": "vite build",
"build": "vite build --target=es2020",
"serve": "vite preview",
"test": "eslint ./resources/scripts --ext .js,.vue"
},
Expand All @@ -18,13 +18,12 @@
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-vue": "^7.0.0-beta.4",
"laravel-vite": "^0.0.7",
"postcss": "^8.4.5",
"prettier": "^2.3.0",
"sass": "^1.32.12",
"tailwind-scrollbar": "^1.3.1",
"tailwindcss": "^3.0.6",
"vite": "^2.6.1"
"vite": "^2.5"
},
"dependencies": {
"@headlessui/vue": "^1.5.0",
Expand All @@ -34,6 +33,7 @@
"@tailwindcss/line-clamp": "^0.3.0",
"@tiptap/core": "^2.0.0-beta.85",
"@tiptap/extension-text-align": "^2.0.0-beta.29",
"@tiptap/pm": "^2.0.0-beta.220",
"@tiptap/starter-kit": "^2.0.0-beta.81",
"@tiptap/vue-3": "^2.0.0-beta.38",
"@vuelidate/components": "^1.1.12",
Expand All @@ -43,6 +43,7 @@
"axios": "^0.19",
"chart.js": "^2.7.3",
"guid": "0.0.12",
"laravel-vite-plugin": "^0.0.1",
"lodash": "^4.17.13",
"maska": "^1.4.6",
"mini-svg-data-uri": "^1.3.3",
Expand All @@ -51,9 +52,9 @@
"v-calendar": "3.0.0-alpha.8",
"v-money3": "3.16.1",
"v-tooltip": "^4.0.0-alpha.1",
"vue": "^3.2.0-beta.5",
"vue": "^3.2",
"vue-flatpickr-component": "^9.0.3",
"vue-i18n": "^9.1.7",
"vue-i18n": "9.1",
"vue-router": "^4.0.8",
"vue3-colorpicker": "^1.0.5",
"vuedraggable": "^4.1.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<LightDarkButton class="absolute z-10 top-2 right-2"/>
<img
id="logo-crater"
src="/img/crater-logo.png"
src="#"
alt="Crater Logo"
class="h-12 mb-5 md:mb-10"
/>
Expand Down
2 changes: 1 addition & 1 deletion resources/scripts/components/base/BaseFileUploader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@

<!-- Avatar Not Selected -->
<div v-if="!localFiles.length && avatar" class="">
<img :src="getDefaultAvatar()" class="rounded" alt="Default Avatar" />
<img :src="getDefaultAvatar()" class="rounded w-4 h-4" alt="Default Avatar" />

<a
href="#"
Expand Down
1 change: 1 addition & 0 deletions resources/scripts/components/base/BaseGlobalLoader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<div class="flex flex-col items-center justify-center h-screen">
<div class="loader loader-white">
<div class="loader-spined">
<!-- let\'s make this another svg -->
<div class="loader--icon">
<svg
class="offset-45deg text-primary-500"
Expand Down
2 changes: 1 addition & 1 deletion resources/views/app.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<link rel="stylesheet" href="/modules/styles/{{ $name }}">
@endforeach

@vite
@vite('resources/scripts/main.js')
</head>

<body
Expand Down
Loading

0 comments on commit 74aa35b

Please sign in to comment.