Skip to content
Snippets Groups Projects
Commit fa1fe1a9 authored by Greg Fodor's avatar Greg Fodor
Browse files

Move stylesheets and fonts under assets

parent 41fff9a7
No related branches found
No related tags found
No related merge requests found
......@@ -3,7 +3,7 @@
font-family: 'Zilla Slab';
font-style: normal;
font-weight: 400;
src: local('Zilla Slab'), local('ZillaSlab-Regular'), url('./fonts/zilla-slab_latin-ext.woff2') format('woff2');
src: local('Zilla Slab'), local('ZillaSlab-Regular'), url('../fonts/zilla-slab_latin-ext.woff2') format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
......@@ -12,6 +12,6 @@
font-family: 'Zilla Slab';
font-style: normal;
font-weight: 400;
src: local('Zilla Slab'), local('ZillaSlab-Regular'), url('./fonts/zilla-slab_latin.woff2') format('woff2');
src: local('Zilla Slab'), local('ZillaSlab-Regular'), url('../fonts/zilla-slab_latin.woff2') format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
File moved
@import 'src/fonts';
@import 'src/loader';
@import 'fonts';
@import 'loader';
$dark-transparent: rgba(0, 0, 0, 0.4);
$darker-transparent: rgba(0, 0, 0, 0.6);
......
import "./room.scss";
import "./assets/stylesheets/room.scss";
import queryString from "query-string";
import { patchWebGLRenderingContext } from "./utils/webgl";
......@@ -131,7 +131,7 @@ function setNameTagFromStore() {
async function enterScene(mediaStream, enterInVR) {
const scene = document.querySelector("a-scene");
document.querySelector("a-scene canvas").classList.remove("blurred")
scene.setAttribute("networked-scene", "adapter: janus; audio: true; debug: true; onConnect: App.onConnect; connectOnLoad: false;");
scene.setAttribute("networked-scene", "adapter: janus; audio: true; debug: true; connectOnLoad: false;");
registerNetworkSchemas();
if (enterInVR) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment