Skip to content

Commit

Permalink
Added back buttons everywhere to resolve the reloading issue
Browse files Browse the repository at this point in the history
  • Loading branch information
avogadroB committed Oct 20, 2024
1 parent fc0cbce commit 516f732
Show file tree
Hide file tree
Showing 28 changed files with 45,130 additions and 3,737 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
.vscode
node_modules
49 changes: 49 additions & 0 deletions chaosweb-v@2/index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
/* Inverted body style */
@tailwind base;
@tailwind components;
@tailwind utilities;

body.inverted {
filter:
invert(1)
hue-rotate(180deg)
saturate(0.5)
brightness(1.2)
contrast(2)
sepia(0);
opacity: 1;
}

body.inverted img,
body.inverted video {
filter:
invert(1)
hue-rotate(180deg)
saturate(0.3)
brightness(1.5)
contrast(2)
sepia(0);
opacity: 1;
}

/* Custom scrollbar styles */
::-webkit-scrollbar {
width: 7px;
}

/* Track */
::-webkit-scrollbar-track {
background: #2d1950;
}

/* Handle */
::-webkit-scrollbar-thumb {
background: rgba(178, 121, 216, 0.959);
border-radius: 12px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
background: rgba(222, 130, 235, 0.911);
border-radius: 12px;
}
2 changes: 1 addition & 1 deletion chaosweb-v@2/src/main.jsx → chaosweb-v@2/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.jsx'
import App from './App.js'
import './index.css'

createRoot(document.getElementById('root')).render(
Expand Down
Loading

0 comments on commit 516f732

Please sign in to comment.