1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-25 11:42:30 +01:00

update blockquote style

This commit is contained in:
Puyodead1 2023-09-25 11:55:44 -04:00
parent c63843d10b
commit 2a0304cd24
No known key found for this signature in database
GPG Key ID: A4FA4FEC0DD353FC
2 changed files with 6 additions and 3 deletions

View File

@ -22,11 +22,11 @@ const Container = styled.div`
blockquote {
margin: 2px 0;
padding: 5px;
background-color: var(--background-secondary);
padding: 5px 15px;
background-color: transparent;
width: fit-content;
border-radius: 4px;
border-inline-start: 4px solid var(--background-tertiary);
border-inline-start: 4px solid var(--interactive);
}
code.inline {

View File

@ -54,6 +54,7 @@ export type ThemeVariables =
| "warningLight"
| "warningDark"
| "warningContrastText"
| "interactive"
| "scrollbarTrack"
| "scrollbarThumb";
@ -123,6 +124,7 @@ export const ThemePresets: Record<string, Theme> = {
warningContrastText: "",
scrollbarTrack: "",
scrollbarThumb: "",
interactive: "",
font: font,
},
dark: {
@ -165,6 +167,7 @@ export const ThemePresets: Record<string, Theme> = {
warningContrastText: "#040404",
scrollbarTrack: "#232323",
scrollbarThumb: "#171717",
interactive: "#424242",
font: font,
},
};