first commit

This commit is contained in:
Dhanraj
2024-07-07 14:31:05 +05:30
commit 1d502a2cf1
1089 changed files with 161249 additions and 0 deletions

View File

@ -0,0 +1,17 @@
export function fixRtlStylesheetsOrder() {
const bootstrap_rtl = document.head.querySelector('link[href="/assets/css/lib/bootstrap.rtl.min.css"]');
const style_css = document.head.querySelector('link[href="/assets/css/style.css"]');
const style_rtl_css = document.head.querySelector('link[href="/assets/css/rtl_style.css"]');
bootstrap_rtl && document.head.append(bootstrap_rtl);
style_css && document.head.append(style_css);
style_rtl_css && document.head.append(style_rtl_css);
}
export function fixPreviewStylesheetOrder() {
const bootstrap_css = document.head.querySelector('link[href="/assets/css/lib/bootstrap.min.css"]');
const style_css = document.head.querySelector('link[href="/assets/css/style.css"]');
const preview_css = document.head.querySelector('link[href="/landing-preview/css/preview-style.css"]');
bootstrap_css && document.head.append(bootstrap_css);
style_css && document.head.append(style_css);
preview_css && document.head.append(preview_css);
}