Small change.

This commit is contained in:
Daniel 2022-06-24 17:18:23 +04:30
parent 36c7cbd726
commit f5b7f872f0
4 changed files with 4 additions and 4 deletions

View File

@ -26,7 +26,7 @@ The objective is to have a self-hosted place to keep useful links in one place,
* 🔥 Sleek, minimalist design.
* 📦 Auto-capture a screenshot and PDF from each website.
* 📷 Auto-capture a screenshot and PDF from each website.
* 🌤 Dark/Light mode support.

View File

@ -27,7 +27,7 @@ const List = ({ data, tags, collections, reFetch, SetLoader, lightMode }) => {
return (
<div className="list">
{numberOfResults > 0 ? (
<p className="results">{numberOfResults} Bookmarks found</p>
<p className="results">{numberOfResults} Bookmarks found.</p>
) : null}
{numberOfResults === 0 ? <NoResults /> : null}

View File

@ -41,7 +41,7 @@ const SideBar = ({ tags, collections, handleToggleSidebar, toggle }) => {
className="sidebar"
>
<SidebarHeader>
<h3>LinkWarden</h3>
<h2>LinkWarden</h2>
</SidebarHeader>
<SidebarContent className="sidebar-content">
<Menu iconShape="circle">

View File

@ -3,7 +3,7 @@
position: fixed;
}
.sidebar h3 {
.sidebar h2 {
text-align: center;
}