File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<header
3
- class =" fixed top-0 left-0 right-0 shadow-lg dark:shadow-dark bg-gray-50 dark:bg-gray-900 z-100 dark:text-gray-50"
3
+ class =" fixed top-0 left-0 right-0 text-gray-800 shadow-lg dark:shadow-dark bg-gray-50 dark:bg-gray-900 z-100 dark:text-gray-50"
4
4
>
5
5
<div class =" container flex items-center h-full py-4 m-auto" >
6
6
<div v-if =" showBackButton" class =" mr-4" >
61
61
<slot name =" right" />
62
62
<button
63
63
type =" button"
64
- class =" inline-flex items-center justify-center ml-4 text-gray-800 bg-transparent border-2 border-gray-700 rounded-full shadow-lg dark:text-gray-50 w-9 h-9 active:scale-y-75"
64
+ class =" inline-flex items-center justify-center ml-4 bg-transparent border-2 border-gray-700 rounded-full shadow-lg w-9 h-9 active:scale-y-75"
65
65
@click =" toggleDarkMode"
66
66
>
67
67
<svg
Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ export default {
87
87
const hunkState = item[0 ]
88
88
if (hunkState === - 1 || hunkState === 0 ) {
89
89
const className =
90
- hunkState === - 1 ? ' bg-red-400 dark:bg-yellow-700 ' : ' '
90
+ hunkState === - 1 ? ' bg-red-300 dark:bg-yellow-800 ' : ' '
91
91
return ` <span class="break-all inline p-0 m-0 ${ className} ">${ item[1 ]} </span>`
92
92
}
93
93
return false
@@ -100,7 +100,7 @@ export default {
100
100
const hunkState = item[0 ]
101
101
if (hunkState === 1 || hunkState === 0 ) {
102
102
const className =
103
- hunkState === 1 ? ' bg-green-400 dark:bg-green-700 ' : ' '
103
+ hunkState === 1 ? ' bg-green-300 dark:bg-green-800 ' : ' '
104
104
return ` <span class="break-all inline p-0 m-0 ${ className} ">${ item[1 ]} </span>`
105
105
}
106
106
return false
You can’t perform that action at this time.
0 commit comments