fix: make lock/unlock visible buttons match style

This commit is contained in:
2026-06-20 10:12:40 -03:00
parent 91bf31bd03
commit ea1cf8c1f0
2 changed files with 2 additions and 23 deletions
+2 -2
View File
@@ -67,10 +67,10 @@ export default function FlatCategory({
<button className={shared.lockAllBtn} onClick={onLockAll}> <button className={shared.lockAllBtn} onClick={onLockAll}>
Lock all Lock all
</button> </button>
<button className={styles.pageActionBtn} onClick={onUnlockPage}> <button className={shared.unlockAllBtn} onClick={onUnlockPage}>
Unlock visible Unlock visible
</button> </button>
<button className={styles.pageActionBtn} onClick={onLockPage}> <button className={shared.lockAllBtn} onClick={onLockPage}>
Lock visible Lock visible
</button> </button>
</div> </div>
-21
View File
@@ -33,27 +33,6 @@
border-bottom-color: #a30000; border-bottom-color: #a30000;
} }
/*
page btns
*/
.pageActionBtn {
background: transparent;
border: 1px solid #1e1e1e;
color: #3a3a3a;
padding: 0.6rem 1rem;
font-family: 'Oswald', sans-serif;
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.08em;
cursor: pointer;
transition: all 0.15s ease;
}
.pageActionBtn:hover {
color: #666666;
border-color: #2e2e2e;
}
/* /*
char picker char picker
*/ */