fix: light theme fixes

This commit is contained in:
alexsparkes
2023-01-08 14:01:00 +00:00
parent 4920ae7b80
commit 602ea813f2
4 changed files with 5 additions and 3 deletions

View File

@@ -71,7 +71,6 @@ function Items({
<span className="card-title">{item.display_name || item.name}</span>
<span className="card-subtitle">{item.author}</span>
</div>
{item.type}
</div>
))}
</div>

View File

@@ -119,6 +119,9 @@
.quotediv .author-holder .author .author-content .title {
font-size: 1em !important;
@include themed() {
color: t($color) !important;
}
}
}
}

View File

@@ -210,7 +210,8 @@ function PhotoInformation({ info, url, api }) {
onMouseLeave={() => setshowExtraInfo(false)}
>
<div className={photoMapClassList}>
{!showingPhotoMap ? <MdLocationOn /> : ''}
{photoMap !== null ? <MdLocationOn /> : ''}
<h1>{photoMap}</h1>
{photoMap()}
</div>
{showingPhotoMap ? (

View File

@@ -3,7 +3,6 @@
user-select: none;
text-transform: capitalize;
font-weight: bold;
color: #fff;
--shadow-shift: 0.125rem;
}