Fix missing semicolons in CSS (#4281)

Introduced in #4269
This commit is contained in:
Thomas Lovén 2019-11-27 13:06:02 +01:00 committed by GitHub
parent 60efe00a1f
commit defaa2b276
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -147,8 +147,8 @@ documentContainer.innerHTML = `<custom-style>
--mdc-theme-on-surface: var(--primary-text-color); --mdc-theme-on-surface: var(--primary-text-color);
/* app header background color */ /* app header background color */
--app-header-text-color: var(--text-primary-color) --app-header-text-color: var(--text-primary-color);
--app-header-background-color: var(--primary-color) --app-header-background-color: var(--primary-color);
} }
</style> </style>