diff options
author | Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> | 2023-06-27 22:41:14 -0400 |
---|---|---|
committer | Jeremy <51220084+jeremy-rifkin@users.noreply.github.com> | 2023-06-27 22:41:14 -0400 |
commit | 29f124f57243577a433361550ba67d047fe7b30a (patch) | |
tree | e4decf2088dc533d1720c84b4113d1ed4769e86a | |
parent | 5b0b08e877d8434b4976f2c51f5f23510861c12f (diff) | |
download | compiler-explorer-gh-8005.tar.gz compiler-explorer-gh-8005.zip |
Move all styles to static/stylesgh-8005
-rw-r--r-- | static/main.ts | 2 | ||||
-rw-r--r-- | static/noscript.ts | 2 | ||||
-rw-r--r-- | static/styles/colours.scss (renamed from static/colours.scss) | 0 | ||||
-rw-r--r-- | static/styles/noscript.scss (renamed from static/noscript.scss) | 0 |
4 files changed, 2 insertions, 2 deletions
diff --git a/static/main.ts b/static/main.ts index 13c9066a4..f83933bbe 100644 --- a/static/main.ts +++ b/static/main.ts @@ -78,7 +78,7 @@ if (!window.PRODUCTION && !options.embedded) { require('bootstrap/dist/css/bootstrap.min.css'); require('golden-layout/src/css/goldenlayout-base.css'); require('tom-select/dist/css/tom-select.bootstrap4.css'); -require('./colours.scss'); +require('./styles/colours.scss'); require('./styles/explorer.scss'); // Check to see if the current unload is a UI reset. diff --git a/static/noscript.ts b/static/noscript.ts index 6f9dd9733..869bf479f 100644 --- a/static/noscript.ts +++ b/static/noscript.ts @@ -29,7 +29,7 @@ import 'bootstrap'; import 'popper.js'; import {Toggles} from './widgets/toggles.js'; -import './noscript.scss'; +import './styles/noscript.scss'; $(document).on('ready', () => { $('.button-checkbox').each(function () { diff --git a/static/colours.scss b/static/styles/colours.scss index 34c952668..34c952668 100644 --- a/static/colours.scss +++ b/static/styles/colours.scss diff --git a/static/noscript.scss b/static/styles/noscript.scss index b035d8b50..b035d8b50 100644 --- a/static/noscript.scss +++ b/static/styles/noscript.scss |