mirror of
https://github.com/revoltchat/revite.git
synced 2024-11-15 03:35:01 -05:00
11 lines
208 B
TypeScript
11 lines
208 B
TypeScript
|
import styled from "styled-components";
|
||
|
|
||
|
export const Banner = styled.div`
|
||
|
padding: 8px;
|
||
|
font-size: 14px;
|
||
|
text-align: center;
|
||
|
|
||
|
color: var(--accent);
|
||
|
background: var(--primary-background);
|
||
|
`;
|