mirror of
https://github.com/outline/outline.git
synced 2025-12-20 10:09:43 -06:00
13 lines
258 B
TypeScript
13 lines
258 B
TypeScript
import styled from "styled-components";
|
|
import { s } from "@shared/styles";
|
|
|
|
export const UnreadBadge = styled.div`
|
|
width: 8px;
|
|
height: 8px;
|
|
background: ${s("accent")};
|
|
border-radius: 8px;
|
|
align-self: center;
|
|
position: absolute;
|
|
right: 4px;
|
|
`;
|