adding tooltip with which class has conflicts

This commit is contained in:
Sriram Hariharan
2023-03-22 22:48:14 -05:00
parent 2ddfde2642
commit ad85c2b816
6 changed files with 71 additions and 11 deletions

View File

@@ -23,6 +23,7 @@ $semi_bold_weight: 600;
$bold_weight: 700;
$black_weight: 900;
$xx_small_size: 4px;
$x_small_size: 8px;
$small_size: 12px;
$medium_size: 16px;
@@ -38,6 +39,7 @@ $xx_large_size: 48px;
bold_weight: $bold_weight;
black_weight: $black_weight;
xx_small_size: $xx_small_size;
x_small_size: $x_small_size;
small_size: $small_size;
medium_size: $medium_size;

View File

@@ -14,6 +14,7 @@ export interface IWeights {
* the type for all the size scss variables exported from fonts.module.scss
*/
export interface ISizes {
xx_small_size: number;
x_small_size: number;
small_size: number;
medium_size: number;