Add branding assets for TIS tenant with logo and login image

This commit is contained in:
2026-05-11 13:36:06 +03:30
parent 13c791d86f
commit 8e1a021eec
32 changed files with 430 additions and 309 deletions
-17
View File
@@ -1,17 +0,0 @@
pre.app-code {
background-color: var(--code-background);
margin: 0 0 1rem 0;
padding: 0;
border-radius: var(--content-border-radius);
overflow: auto;
code {
color: var(--code-color);
padding: 1rem;
margin: 0;
line-height: 1.5;
display: block;
font-weight: semibold;
font-family: monaco, Consolas, monospace;
}
}
-2
View File
@@ -1,2 +0,0 @@
@use './code.scss';
@use './flags/flags';
File diff suppressed because one or more lines are too long
Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 KiB

+7
View File
@@ -0,0 +1,7 @@
import login from './login.jpg';
import logo from './logo.png';
export default {
logo,
login,
};
+2 -6
View File
@@ -1,13 +1,9 @@
// Export the public URL for static assets so bundlers don't need a loader for binary imports.
// The Angular CLI / build serves files in `src/assets` at `/assets`.
import brandingAssets from './brandingAssets';
import errors from './errors';
import login from './login.jpg';
import logo from './logo.png';
import { placeholders } from './placeholders';
export default {
logo,
login,
...brandingAssets,
errors,
placeholders,
};