remove ping command, add backshot command, add nice font to chatwidget, add first time chatting warning

This commit is contained in:
2025-07-23 02:53:45 +01:00
parent cc3176ea2f
commit 7489c4f52d
9 changed files with 31 additions and 13 deletions

View File

@@ -1,4 +1,5 @@
import './style.css';
import '@fontsource/jersey-15';
import { type twitchEventData } from "../../websockettypes";
import { parseMessage } from './createMessage';

View File

@@ -1,7 +1,8 @@
:root {
font-family: system-ui, Avenir, Helvetica, Arial, sans-serif;
line-height: 1.5;
font-family: 'Jersey 15', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
line-height: 1;
font-weight: 400;
font-size: 5vmin;
color-scheme: light dark;
color: rgba(255, 255, 255, 0.87);
@@ -22,8 +23,6 @@ body {
#app {
max-width: 1280px;
margin: 0 auto;
padding: 2rem;
}
.message {
@@ -43,7 +42,7 @@ body {
img {
vertical-align: middle;
height: 18px;
height: 5vmin;
padding: 1px;
}