changed from hexo to custom react stuff #1

Merged
developomp merged 73 commits from dev into master 2021-06-27 14:37:56 +09:00
Showing only changes of commit 5fad984335 - Show all commits

View file

@ -85,8 +85,17 @@ p {
} }
blockquote { blockquote {
background-color: rgba(0, 0, 0, 5%); background-color: ${(props) =>
border-left: 0.4rem solid rgba(0, 0, 0, 10%); theming.theme(props.theme.currentTheme, {
light: "rgba(0, 0, 0, 5%)",
dark: "rgba(255, 255, 255, 3%)",
})};
border-left: ${(props) =>
theming.theme(props.theme.currentTheme, {
light: "0.4rem solid rgba(0, 0, 0, 10%)",
dark: "0.4rem solid rgba(255, 255, 255, 5%)",
})};
padding-top: 0.1rem; padding-top: 0.1rem;
padding-right: 1rem; padding-right: 1rem;
padding-bottom: 0.1rem; padding-bottom: 0.1rem;