Added public visibility toggle to stash page.

This commit is contained in:
DebaucheryLibrarian
2021-03-20 02:15:31 +01:00
parent 4bc6ff846d
commit 292faa1e48
2 changed files with 74 additions and 10 deletions

View File

@@ -53,6 +53,16 @@ export default {
.toggle-container {
display: inline-block;
cursor: pointer;
&.light {
.toggle {
background: var(--lighten-weak);
}
.toggle-input:checked + .toggle {
background: var(--lighten);
}
}
}
.toggle {