diff --git a/public/apple-touch-icon.png b/public/apple-touch-icon.png deleted file mode 100644 index 7b90fe6..0000000 Binary files a/public/apple-touch-icon.png and /dev/null differ diff --git a/public/index.html b/public/index.html index 9272b20..bd3d7cb 100644 --- a/public/index.html +++ b/public/index.html @@ -8,20 +8,18 @@ - - - - - - - + + + + + - - - - - + + + + + diff --git a/src/components/applications/file-explorer/FileExplorer.jsx b/src/components/applications/file-explorer/FileExplorer.jsx index 2a4b8aa..8a339c0 100644 --- a/src/components/applications/file-explorer/FileExplorer.jsx +++ b/src/components/applications/file-explorer/FileExplorer.jsx @@ -61,13 +61,13 @@ export function FileExplorer() { return (
- - - - -
- - - -
{currentDirectory.files.map((file, index) => - )} {currentDirectory.subFolders.map(({ name }, index) => - ); + const classNames = [styles["App-icon"]]; + if (active) + classNames.push(styles.Active); + + return ( + + ); } export function Taskbar() { @@ -40,7 +50,7 @@ export function Taskbar() { return (
- {ApplicationsManager.APPLICATIONS.map((app) => @@ -48,16 +58,16 @@ export function Taskbar() { )}
- - - - -
); diff --git a/src/components/utils/DropdownButton.jsx b/src/components/utils/DropdownButton.jsx index 7180eab..cefc257 100644 --- a/src/components/utils/DropdownButton.jsx +++ b/src/components/utils/DropdownButton.jsx @@ -14,13 +14,13 @@ export function DropdownButton({ label, options }) { return ( { setOpen(false); }}>
- {open && options ? (
{Object.entries(options).map(([label, callback]) => - - -