portico: Define variable for modal background color.

The CSS for modals uses "--color-background-color" to set
background color of modal. But the variable is defined in
zulip.css which is not available for portico pages and thus
the email visibility modal was not rendering as expected in
"Terms of service" page.

This commit defines the "--color-background-color" variable
in portico.css such that it is available for portico pages
as well.
This commit is contained in:
Sahil Batra 2023-07-03 16:27:18 +05:30 committed by Tim Abbott
parent 7b6d549604
commit e4dad94cba
1 changed files with 4 additions and 0 deletions

View File

@ -1,3 +1,7 @@
:root {
--color-background-modal: hsl(0deg 0% 98%);
}
body {
background-color: hsl(0deg 0% 98%);
font-family: "Source Sans 3", sans-serif;