Data Request API helper #10

Merged
Oliver merged 94 commits from feat/data-requests into main 2025-11-22 02:51:15 +00:00
3 changed files with 15 additions and 2 deletions
Showing only changes of commit 361a2004d8 - Show all commits

View file

@ -32,14 +32,14 @@
position: absolute; position: absolute;
inset: 0px; inset: 0px;
border-radius: 50%; border-radius: 50%;
border: 5px solid #FFF; border: 5px solid var(--spinner-outer-colour, #fff);
animation: prixClipFix 4s linear infinite; animation: prixClipFix 4s linear infinite;
} }
&::after{ &::after{
inset: 8px; inset: 8px;
transform: rotate3d(90, 90, 0, 180deg ); transform: rotate3d(90, 90, 0, 180deg );
border-color: var(--spinner-inner-colour, #FF3D00); border-color: var(--spinner-inner-colour, #ff3d00);
} }
} }
} }

View file

@ -1,6 +1,9 @@
.theme-dark { .theme-dark {
--prosemirror-background: var(--color-cool-5); --prosemirror-background: var(--color-cool-5);
--spinner-outer-colour: white;
--spinner-inner-colour: #FF3D00;
Oliver marked this conversation as resolved Outdated

Need to add light theme of these variables

Need to add light theme of these variables
/* Chip Variables */ /* Chip Variables */
--chip-color: #fff7ed; --chip-color: #fff7ed;
--chip-background: #2b3642; --chip-background: #2b3642;

View file

@ -1,3 +1,13 @@
.theme-light { .theme-light {
--prosemirror-background: white; --prosemirror-background: white;
--spinner-outer-colour: black;
--spinner-inner-colour: #FF3D00;
/* Chip Variables */
--chip-color: #18181b;
--chip-background: #fafafa;
--chip-value-color: #18181b;
--chip-value-background: #d4d4d8aa;
--chip-border-color: var(--chip-value-background);
} }