[develop | CHANGED]: Change number class size for medium and large to uk-widht-max-content.

This commit is contained in:
Konstantinos Triantafyllou 2024-06-18 10:07:44 +03:00
parent 00724378a8
commit 56b5972316
1 changed files with 2 additions and 2 deletions

View File

@ -58,9 +58,9 @@ export abstract class IndicatorStakeholderBaseComponent extends StakeholderBaseC
if (size === 'small') {
return 'uk-width-medium';
} else if (size === 'medium') {
return 'uk-width-large';
return 'uk-width-max-content';
} else {
return 'uk-width-1-2@m uk-width-1-1';
return 'uk-width-max-content';
}
}