App name CSS vars

This commit is contained in:
Adina Țeudan 2023-01-18 07:04:01 +02:00
parent 03d63fc78e
commit a2bb0360d7
2 changed files with 4 additions and 5 deletions

View File

@ -48,6 +48,8 @@ body {
--iqser-button-height: 34px;
--iqser-font-family: 'some placeholder value that should be overridden when configuring a theme';
--iqser-app-name-font-family: 'some placeholder value that should be overridden when configuring a theme';
--iqser-app-name-font-size: 18px;
--iqser-app-name-color: black;
}
$required-variables: 'iqser-font-family' 'iqser-primary';

View File

@ -23,13 +23,10 @@
.app-name {
font-family: var(--iqser-app-name-font-family);
height: 20px;
font-size: var(--iqser-font-size);
font-size: var(--iqser-app-name-font-size);
color: var(--iqser-app-name-color);
font-weight: 800;
letter-spacing: 0;
line-height: 20px;
white-space: nowrap;
color: var(--iqser-text);
}
.menu {