aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/styles/BlockBody.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/styles/BlockBody.ts')
-rw-r--r--src/styles/BlockBody.ts27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/styles/BlockBody.ts b/src/styles/BlockBody.ts
deleted file mode 100644
index 8fb655e..0000000
--- a/src/styles/BlockBody.ts
+++ /dev/null
@@ -1,27 +0,0 @@
-import styled from "styled-components";
-import BlockAnchor from "./BlockAnchor";
-
-export default styled.div`
- & + & {
- margin-top: 3px;
- }
-
- background-color: #fff;
- border: 1px #000 solid;
- border-left: 3px #000 solid;
- border-right: 3px #000 solid;
-
- padding: ${(props) => (props.theme.link ? "0" : "4px 8px")};
-
- & > ${BlockAnchor} {
- &:hover {
- background-color: #ddd;
- color: #222;
- }
- }
- &:last-child,
- &:last-child > ${BlockAnchor} {
- border-bottom-left-radius: 18px;
- border-bottom-right-radius: 18px;
- }
-`;