Toggle posts only & mark all mail as read.

This commit is contained in:
Thomas Mathews 2023-01-24 10:46:44 -08:00
parent 83931e0085
commit 062ddda3d9
10 changed files with 83 additions and 22 deletions

View file

@ -16,7 +16,7 @@
button.action:disabled {
cursor: default;
background-color: var(--clrTextLight);
opacity: 0.5;
}
button {
background: #171717;
@ -38,10 +38,19 @@ button.action {
border-radius: 50px;
background: var(--clrBgAction);
padding: 10px 15px;
font-size: 16px;
font-size: var(--fsNormal);
color: var(--clrTextAction);
font-weight: 800;
}
button.action.small {
padding: 5px 15px;
font-size: var(--fsReduced);
}
button.action.bordered {
background: transparent;
border: solid 2px var(--clrBgAction);
color: var(--clrBgAction);
}
img.icon {
width: var(--iconSize);