generated from lucien/api-template
fix: fixed emoji size on emojispage
This commit is contained in:
parent
a645d6bd0d
commit
bd29608010
2 changed files with 6 additions and 0 deletions
|
@ -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>("");
|
||||
|
|
4
front/src/styles/EmojisPage.css
Normal file
4
front/src/styles/EmojisPage.css
Normal file
|
@ -0,0 +1,4 @@
|
|||
.emoji {
|
||||
max-width: 5em;
|
||||
max-height: 5em;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue