Fixed typo.
This commit is contained in:
parent
5d5fdb45d7
commit
47b4711132
|
@ -12,7 +12,7 @@ LinkWarden
|
|||
|
||||
</h1>
|
||||
|
||||
[Demo](https://linkwarden.netlify.app/) | [Intro & Motivation](https://github.com/Daniel31x13/link-warden#intro--motivation) | [Features](https://github.com/Daniel31x13/link-warden#features) | [Roadmap](https://github.com/Daniel31x13/link-warden/wiki#project-roadmap) | [Setup](https://github.com/Daniel31x13/link-warden#setup) | [Development](https://github.com/Daniel31x13/link-warden#linkwarden-development)
|
||||
[Demo (v1.0.0)](https://linkwarden.netlify.app/) | [Intro & Motivation](https://github.com/Daniel31x13/link-warden#intro--motivation) | [Features](https://github.com/Daniel31x13/link-warden#features) | [Roadmap](https://github.com/Daniel31x13/link-warden/wiki#project-roadmap) | [Setup](https://github.com/Daniel31x13/link-warden#setup) | [Development](https://github.com/Daniel31x13/link-warden#linkwarden-development)
|
||||
|
||||
</div>
|
||||
|
||||
|
@ -24,17 +24,17 @@ The objective is to have a self-hosted place to keep useful links in one place,
|
|||
|
||||
## Features
|
||||
|
||||
* 🔥 Sleek, minimalist design.
|
||||
|
||||
* 📷 Auto-capture a screenshot and PDF from each website.
|
||||
|
||||
* 🔥 Sleek, minimalist design.
|
||||
|
||||
* 🌤 Dark/Light mode support.
|
||||
|
||||
* ↔️ Responsive design.
|
||||
|
||||
* 🔎 Search, filter and sorting functionality.
|
||||
|
||||
* 💨 Lazy loading support (for better performance).
|
||||
* 🚀 Lazy loading (for better performance).
|
||||
|
||||
* 🏷 Set multiple tags to each link.
|
||||
|
||||
|
|
|
@ -61,7 +61,7 @@ const List = ({ data, tags, collections, reFetch, SetLoader, lightMode }) => {
|
|||
"https://www.google.com/s2/favicons?domain=" + url.hostname;
|
||||
return (
|
||||
<LazyLoad key={i} height={200} offset={200}>
|
||||
<div className="list-row neomorphisim">
|
||||
<div className="list-row neumorphism">
|
||||
<div className="img-content-grp">
|
||||
<img alt="" src={favicon} />
|
||||
<div className="list-entity-content">
|
||||
|
|
|
@ -2,7 +2,7 @@ import React from "react";
|
|||
|
||||
const NoResults = () => {
|
||||
return (
|
||||
<div className="no-results neomorphisim">
|
||||
<div className="no-results neumorphism">
|
||||
<h1>¯\_(ツ)_/¯</h1>
|
||||
<p>Nothing found.</p>
|
||||
</div>
|
||||
|
|
|
@ -70,7 +70,6 @@
|
|||
padding: 10px;
|
||||
font-size: 1.1rem;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
}
|
||||
|
||||
@keyframes fadein {
|
||||
|
|
|
@ -19,7 +19,7 @@ body {
|
|||
|
||||
/* Dark Mode settings (Default) */
|
||||
|
||||
.neomorphisim {
|
||||
.neumorphism {
|
||||
border-radius: 50px;
|
||||
background: #273949;
|
||||
box-shadow: 5px 5px 10px #10171d,
|
||||
|
@ -78,7 +78,7 @@ body {
|
|||
color: rgb(64, 64, 64);
|
||||
}
|
||||
|
||||
.light .neomorphisim {
|
||||
.light .neumorphism {
|
||||
border-radius: 50px;
|
||||
background: #e0e0e0;
|
||||
box-shadow: 5px 5px 10px #5a5a5a,
|
||||
|
|
Ŝarĝante…
Reference in New Issue