mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-09 16:53:36 -05:00
Fix: Small header fixes
This commit is contained in:
parent
8e0e226ec6
commit
4e28470d2d
2 changed files with 6 additions and 2 deletions
|
@ -46,6 +46,6 @@ export default styled.div<Props>`
|
|||
` }
|
||||
|
||||
${ props => props.borders && css`
|
||||
border-end-start-radius: 8px;
|
||||
border-start-start-radius: 8px;
|
||||
` }
|
||||
`;
|
||||
|
|
|
@ -4,6 +4,7 @@ import Header from "../../components/ui/Header";
|
|||
import PaintCounter from "../../lib/PaintCounter";
|
||||
import { AppContext } from "../../context/revoltjs/RevoltClient";
|
||||
import { useUserPermission } from "../../context/revoltjs/hooks";
|
||||
import { Wrench } from "@styled-icons/boxicons-solid";
|
||||
|
||||
export default function Developer() {
|
||||
// const voice = useContext(VoiceContext);
|
||||
|
@ -12,7 +13,10 @@ export default function Developer() {
|
|||
|
||||
return (
|
||||
<div>
|
||||
<Header placement="primary">Developer Tab</Header>
|
||||
<Header placement="primary">
|
||||
<Wrench size="24" />
|
||||
Developer Tab
|
||||
</Header>
|
||||
<div style={{ padding: "16px" }}>
|
||||
<PaintCounter always />
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue