add initial subscriptions box UI

This commit is contained in:
Tom
2023-05-03 14:16:00 +02:00
parent df3ef67cb1
commit 9aafdfb2f5
2 changed files with 45 additions and 2 deletions
+21
View File
@@ -171,6 +171,11 @@ export const Boards = styled.div`
padding: 0;
padding-bottom: .5em;
background: #fff;
word-wrap: break-word;
#subscriptions {
text-align: left;
}
`;
export const BoardsTitle = styled.div`
@@ -237,6 +242,22 @@ export const BoardsContent = styled.div`
padding: 0 2px;
white-space: pre-line;
}
h3 {
font-size: 100%;
font-weight: 700;
text-align: left;
}
.boardlink {
color: #800;
text-decoration: none;
:hover {
text-decoration: underline;
color: #e00
}
}
`;
export const Footer = styled.div`