Fix Froups not displaying correct time and other

This commit is contained in:
Michał Gdula 2022-10-20 15:17:24 +00:00
parent 436a49e3ed
commit 3b24876900
9 changed files with 100 additions and 15 deletions

View file

@ -115,9 +115,16 @@ body {
}
&:disabled {
opacity: 0.5;
cursor: not-allowed;
outline: none;
z-index: 1;
filter: brightness(0.5) grayscale(0.3);
img {
display: none;
}
}
}
@ -296,4 +303,26 @@ a.link {
* {
transition: none !important;
}
}
.hr {
margin: 0.5rem 0;
border: none;
border-top: $border-thickness solid $fg;
}
.hr-full {
margin-left: -0.5rem;
margin-right: -0.5rem;
}
.hr-bad {
border-color: $warning;
}
.hr-warning {
border-color: $alert;
}
.hr-good {
border-color: $page-accent;
}