minor color adjustment for blockquotes
This commit is contained in:
parent
2afe7e69e7
commit
5fad984335
1 changed files with 11 additions and 2 deletions
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue