Update Codesplit.js for HTML tag background color

This commit is contained in:
tuantinghuang 2024-10-15 14:39:24 -04:00
parent db4b49810b
commit d987307e2a

View file

@ -13,7 +13,7 @@ const LanguageNameBadge = ({ language }) => {
};
return (
<div className="ml-4 rounded-b-md bg-noc-400 px-2 py-0.5 text-xs text-white">
<div className="ml-4 rounded-b-md bg-gray-400 px-2 py-0.5 text-xs text-white">
{LANGUAGE_NAME_ALIAS[language] || language}
</div>
);