fix: fixed emoji size on emojispage

This commit is contained in:
Lukian 2025-04-28 11:01:50 +02:00
parent a645d6bd0d
commit bd29608010
2 changed files with 6 additions and 0 deletions

View file

@ -4,6 +4,8 @@ import { Emojis, User } from "../types"
import axios from "axios"
import TopBar from "../components/TopBar"
import "../styles/EmojisPage.css"
export default function EmojisPage({socket}: {socket: WebSocket}) {
const [emojis, setEmojis] = useState<Emojis>();
const [search, setSearch] = useState<string>("");

View file

@ -0,0 +1,4 @@
.emoji {
max-width: 5em;
max-height: 5em;
}