style: Apply transparent background to checkboxes

This commit is contained in:
2025-12-04 22:31:07 +00:00
committed by Tanner Collin (aider)
parent b439199836
commit 23b56b26b1
2 changed files with 5 additions and 1 deletions

View File

@@ -122,7 +122,7 @@ function Feed({ updateCache }) {
</Helmet>
<div style={{marginBottom: '1rem'}}>
<input type="checkbox" id="filter-smallweb" checked={filterSmallweb} onChange={handleFilterChange} />
<input type="checkbox" id="filter-smallweb" className="checkbox" checked={filterSmallweb} onChange={handleFilterChange} />
<label htmlFor="filter-smallweb" style={{paddingLeft: '0.5rem'}}>Filter Smallweb</label>
</div>

View File

@@ -310,3 +310,7 @@ button.comment {
cursor: pointer;
vertical-align: middle;
}
.checkbox {
background: transparent;
}