Skip to content
Snippets Groups Projects
Commit 4e28470d authored by nizune's avatar nizune Committed by insert
Browse files

Fix: Small header fixes

parent 8e0e226e
No related merge requests found
...@@ -46,6 +46,6 @@ export default styled.div<Props>` ...@@ -46,6 +46,6 @@ export default styled.div<Props>`
` } ` }
${ props => props.borders && css` ${ props => props.borders && css`
border-end-start-radius: 8px; border-start-start-radius: 8px;
` } ` }
`; `;
...@@ -4,6 +4,7 @@ import Header from "../../components/ui/Header"; ...@@ -4,6 +4,7 @@ import Header from "../../components/ui/Header";
import PaintCounter from "../../lib/PaintCounter"; import PaintCounter from "../../lib/PaintCounter";
import { AppContext } from "../../context/revoltjs/RevoltClient"; import { AppContext } from "../../context/revoltjs/RevoltClient";
import { useUserPermission } from "../../context/revoltjs/hooks"; import { useUserPermission } from "../../context/revoltjs/hooks";
import { Wrench } from "@styled-icons/boxicons-solid";
export default function Developer() { export default function Developer() {
// const voice = useContext(VoiceContext); // const voice = useContext(VoiceContext);
...@@ -12,7 +13,10 @@ export default function Developer() { ...@@ -12,7 +13,10 @@ export default function Developer() {
return ( return (
<div> <div>
<Header placement="primary">Developer Tab</Header> <Header placement="primary">
<Wrench size="24" />
Developer Tab
</Header>
<div style={{ padding: "16px" }}> <div style={{ padding: "16px" }}>
<PaintCounter always /> <PaintCounter always />
</div> </div>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment