fix style import

This commit is contained in:
Felix Roos 2022-08-05 23:18:03 +02:00
parent 93251582ab
commit 1942c36443
2 changed files with 2 additions and 14 deletions

View file

@ -1,3 +1,4 @@
@import '@strudel.cycles/react/dist/style.css';
@tailwind base; @tailwind base;
@tailwind components; @tailwind components;
@tailwind utilities; @tailwind utilities;
@ -6,18 +7,6 @@ body {
background-color: #222; background-color: #222;
} }
.react-codemirror2,
.CodeMirror {
height: 100% !important;
background-color: transparent !important;
font-size: 15px;
z-index: 20;
}
.CodeMirror-line > span {
background-color: #11111190;
}
.darken::before { .darken::before {
content: ' '; content: ' ';
position: fixed; position: fixed;

View file

@ -7,7 +7,6 @@ This program is free software: you can redistribute it and/or modify it under th
import controls from '@strudel.cycles/core/controls.mjs'; import controls from '@strudel.cycles/core/controls.mjs';
import { evalScope, evaluate } from '@strudel.cycles/eval'; import { evalScope, evaluate } from '@strudel.cycles/eval';
import { CodeMirror, cx, flash, useHighlighting, useRepl, useWebMidi } from '@strudel.cycles/react'; import { CodeMirror, cx, flash, useHighlighting, useRepl, useWebMidi } from '@strudel.cycles/react';
import '@strudel.cycles/react/dist/style.css';
import { getDefaultSynth, cleanupDraw, cleanupUi, Tone } from '@strudel.cycles/tone'; import { getDefaultSynth, cleanupDraw, cleanupUi, Tone } from '@strudel.cycles/tone';
import React, { useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react'; import React, { useCallback, useEffect, useLayoutEffect, useRef, useState } from 'react';
import './App.css'; import './App.css';