diff --git a/static/css/s2.css b/static/css/s2.css
index 624c0720c8..6a589a29dd 100644
--- a/static/css/s2.css
+++ b/static/css/s2.css
@@ -13152,7 +13152,7 @@ section.SheetSource .SheetOutsideBiText {
}
.bo-date {
- font-size: 40px;
+ font-family: var(--hebrew-sans-serif-font-family);
}
.sheetList .sheet .sheetTags .bullet {
diff --git a/static/js/Misc.jsx b/static/js/Misc.jsx
index 6861d3dfbe..0e76dcc0e9 100644
--- a/static/js/Misc.jsx
+++ b/static/js/Misc.jsx
@@ -1851,7 +1851,8 @@ const SheetListing = ({
);
});
- const created = ;
+ let dateClass = Sefaria.interfaceLang == "hebrew"? "bo-date" : "en-date";
+ const created = ;
const underInfo = infoUnderneath ? [
sheet.status !== 'public' ? (
{Sefaria._("profile.tab.sheet.tag.not_published")}) : undefined,
showAuthorUnderneath ? ({sheet.ownerName}) : undefined,
diff --git a/static/js/TopicPageAll.jsx b/static/js/TopicPageAll.jsx
index 06262b1a2b..1bebfcde90 100644
--- a/static/js/TopicPageAll.jsx
+++ b/static/js/TopicPageAll.jsx
@@ -45,7 +45,7 @@ class TopicPageAll extends Component {
const sidebarModules = [
{type: "Promo"},
{type: "TrendingTopics"},
- {type: "JoinTheConversation", props: {wide:multiPanel,title: 'side_nav.join_conversation'}},
+ {type: "JoinTheConversation", props: {wide:false,title: 'side_nav.join_conversation'}},
{type: "GetTheApp"},
{type: "SupportSefaria"},
];