update Mansi AI & add Notification icon

This commit is contained in:
2025-05-23 10:17:02 +02:00
parent 284aa97cdf
commit 464febbb22
3 changed files with 12 additions and 9 deletions

View File

@@ -1,10 +1,10 @@
@font-face {
font-family: 'Mih_Icons';
src: url('fonts/Mih_Icons.eot?h906ip');
src: url('fonts/Mih_Icons.eot?h906ip#iefix') format('embedded-opentype'),
url('fonts/Mih_Icons.ttf?h906ip') format('truetype'),
url('fonts/Mih_Icons.woff?h906ip') format('woff'),
url('fonts/Mih_Icons.svg?h906ip#Mih_Icons') format('svg');
src: url('fonts/Mih_Icons.eot?7reovg');
src: url('fonts/Mih_Icons.eot?7reovg#iefix') format('embedded-opentype'),
url('fonts/Mih_Icons.ttf?7reovg') format('truetype'),
url('fonts/Mih_Icons.woff?7reovg') format('woff'),
url('fonts/Mih_Icons.svg?7reovg#Mih_Icons') format('svg');
font-weight: normal;
font-style: normal;
font-display: block;
@@ -26,6 +26,10 @@
-moz-osx-font-smoothing: grayscale;
}
.icon-notifications:before {
content: "\e90e";
}
.icon-i_dont_know:before {
content: "\e90d";
}

View File

@@ -26,15 +26,12 @@ class MihIcons {
static const IconData calendar =
IconData(0xe904, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
// Note: Updated codepoint for mih_logo based on CSS (\e905)
static const IconData mihLogo =
IconData(0xe905, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
// Note: Updated codepoint and name for mzansi_ai based on CSS (\e906)
static const IconData mzansiAi =
IconData(0xe906, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
// Note: Added mzansi_wallet based on CSS (\e907)
static const IconData mzansiWallet =
IconData(0xe907, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
@@ -44,7 +41,6 @@ class MihIcons {
static const IconData patientProfile =
IconData(0xe909, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
// Added the new icon 'mih_ring' from your updated CSS (\e90a)
static const IconData mihRing =
IconData(0xe90a, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
@@ -53,4 +49,7 @@ class MihIcons {
static const IconData businessSetup =
IconData(0xe90b, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
static const IconData notifications =
IconData(0xe90e, fontFamily: _mihFontFam, fontPackage: _mihFontPkg);
}