mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-26 04:58:27 +00:00
use terminal font for console + samples
This commit is contained in:
parent
89cd0c769b
commit
7716574076
@ -175,7 +175,13 @@ function WelcomeTab() {
|
|||||||
|
|
||||||
function ConsoleTab({ log }) {
|
function ConsoleTab({ log }) {
|
||||||
return (
|
return (
|
||||||
<div className="break-all px-4 dark:text-white text-stone-900">
|
<div id="console-tab" className="break-all px-4 dark:text-white text-stone-900">
|
||||||
|
<pre>{`███████╗████████╗██████╗ ██╗ ██╗██████╗ ███████╗██╗
|
||||||
|
██╔════╝╚══██╔══╝██╔══██╗██║ ██║██╔══██╗██╔════╝██║
|
||||||
|
███████╗ ██║ ██████╔╝██║ ██║██║ ██║█████╗ ██║
|
||||||
|
╚════██║ ██║ ██╔══██╗██║ ██║██║ ██║██╔══╝ ██║
|
||||||
|
███████║ ██║ ██║ ██║╚██████╔╝██████╔╝███████╗███████╗
|
||||||
|
╚══════╝ ╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═════╝ ╚══════╝╚══════╝`}</pre>
|
||||||
{log.map((l, i) => {
|
{log.map((l, i) => {
|
||||||
const message = linkify(l.message);
|
const message = linkify(l.message);
|
||||||
return (
|
return (
|
||||||
@ -191,7 +197,7 @@ function ConsoleTab({ log }) {
|
|||||||
|
|
||||||
function SamplesTab() {
|
function SamplesTab() {
|
||||||
return (
|
return (
|
||||||
<div className="break-normal w-full px-4 dark:text-white text-stone-900">
|
<div id="samples-tab" className="break-normal w-full px-4 dark:text-white text-stone-900">
|
||||||
<span>{loadedSamples.length} banks loaded:</span>
|
<span>{loadedSamples.length} banks loaded:</span>
|
||||||
{loadedSamples.map(([name, samples]) => (
|
{loadedSamples.map(([name, samples]) => (
|
||||||
<span key={name} className="cursor-pointer hover:opacity-50" onClick={() => {}}>
|
<span key={name} className="cursor-pointer hover:opacity-50" onClick={() => {}}>
|
||||||
|
|||||||
@ -21,3 +21,8 @@
|
|||||||
:root {
|
:root {
|
||||||
--app-height: 100vh;
|
--app-height: 100vh;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#console-tab,
|
||||||
|
#samples-tab {
|
||||||
|
font-family: BigBlueTerminal, monospace;
|
||||||
|
}
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user