mirror of
https://github.com/Athou/commafeed.git
synced 2026-03-21 21:37:29 +00:00
Merge branch 'custom-css'
This commit is contained in:
@@ -88,7 +88,7 @@ export function FeedEntriesPage(props: FeedEntriesPageProps) {
|
||||
return (
|
||||
// add some room at the bottom of the page in order to be able to scroll the current entry at the top of the page when expanding
|
||||
<Box mb={viewport.height * 0.7}>
|
||||
<Group gap="xl">
|
||||
<Group gap="xl" className="cf-entries-title">
|
||||
{sourceWebsiteUrl && (
|
||||
<a href={sourceWebsiteUrl} target="_blank" rel="noreferrer" className={classes.sourceWebsiteLink}>
|
||||
<Title order={3}>{title}</Title>
|
||||
|
||||
@@ -35,9 +35,16 @@ interface LayoutProps {
|
||||
function LogoAndTitle() {
|
||||
const dispatch = useAppDispatch()
|
||||
return (
|
||||
<Center inline onClick={async () => await dispatch(redirectToRootCategory())} style={{ cursor: "pointer" }}>
|
||||
<Logo size={24} />
|
||||
<Title order={3} pl="md">
|
||||
<Center
|
||||
className="cf-logo-title"
|
||||
inline
|
||||
onClick={async () => await dispatch(redirectToRootCategory())}
|
||||
style={{ cursor: "pointer" }}
|
||||
>
|
||||
<Box className="cf-logo">
|
||||
<Logo size={24} />
|
||||
</Box>
|
||||
<Title order={3} pl="md" className="cf-title">
|
||||
CommaFeed
|
||||
</Title>
|
||||
</Center>
|
||||
|
||||
Reference in New Issue
Block a user