Skip to content

Commit

Permalink
CSS Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
cmahnke committed Aug 20, 2024
1 parent 5cb0ae2 commit 52488ec
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Source Files/Mocks/vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import eslint from "vite-plugin-eslint";
import { viteSingleFile } from "vite-plugin-singlefile";
import stylelint from "vite-plugin-stylelint";
import { nodePolyfills } from "vite-plugin-node-polyfills";
import DynamicPublicDirectory from "vite-multiple-assets";
import {DynamicPublicDirectory} from "vite-multiple-assets";
import { checker } from "vite-plugin-checker";
//import topLevelAwait from "vite-plugin-top-level-await";

Expand Down
2 changes: 1 addition & 1 deletion Source Files/Mocks/webgpu/assets/scss/base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
min-height: 50vh;

canvas {
background: black;
background: #5107b7;
}
}

Expand Down
8 changes: 6 additions & 2 deletions assets/scss/uranium.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$background-color: #96ff00;
$foreground-color: #5107b7; /* #3D1673; */
$background-color: #5107b7; /* #3D1673; */
$foreground-color: #96ff00;
$accents-color: #ff5477;

body.uranium {
Expand Down Expand Up @@ -35,6 +35,10 @@ body.uranium {
ul li::before {
color: $accents-color;
}

.renderer-canvas canvas {
background: $background-color;
}
}

a {
Expand Down

0 comments on commit 52488ec

Please sign in to comment.