minor color adjustment for blockquotes

This commit is contained in:
Kim, Jimin 2021-05-31 12:13:13 +09:00
parent 2afe7e69e7
commit 5fad984335

View file

@ -85,8 +85,17 @@ p {
}
blockquote {
background-color: rgba(0, 0, 0, 5%);
border-left: 0.4rem solid rgba(0, 0, 0, 10%);
background-color: ${(props) =>
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-right: 1rem;
padding-bottom: 0.1rem;