This commit is contained in:
0x1eef 2024-05-25 03:15:09 -03:00
parent f687a99a7b
commit 62898d4908
3 changed files with 3 additions and 5 deletions

View file

@ -1 +1 @@
v0.8.2
v0.8.3

View file

@ -10,7 +10,7 @@ module Mixin::Inline
def inline_css(path)
class_name = File.basename(path, File.extname(path))
"<style class='css #{class_name}'>" \
"#{items[path.sub('.css', '.scss')].compiled_content}" \
"#{items[path.sub(".css", ".scss")].compiled_content}" \
"</style>"
end
end

View file

@ -14,7 +14,5 @@ import { SurahIndex } from "~/components/SurahIndex";
})()!;
const surahs: Surah[] = byLocale[locale.name].map((e: TSurah) => new Surah(e));
ReactDOM.createRoot(root).render(
<SurahIndex locale={locale} surahs={surahs} t={t} />,
);
ReactDOM.createRoot(root).render(<SurahIndex locale={locale} surahs={surahs} t={t} />);
})();