mirror of
https://github.com/outline/outline.git
synced 2026-06-13 03:14:59 +03:00
331f25ac17
* fix: Unread badge position * fix: Hover state with active context menu
13 lines
259 B
TypeScript
13 lines
259 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: 12px;
|
|
`;
|