style improvements

- added empty state to list
- styled scrollbars
- progressbar shows time elapsed
- timers are monospace
- prevent overflow in titles
This commit is contained in:
cv
2021-04-21 19:11:43 +02:00
parent 4e36e58a21
commit 57c6b11db1
26 changed files with 381 additions and 209 deletions
+12
View File
@@ -0,0 +1,12 @@
import { ReactComponent as Emptyimage } from '../../assets/images/empty.svg';
import style from './Empty.module.css';
export default function Empty(props) {
const { text } = props;
return (
<div className={style.emptyContainer}>
<Emptyimage className={style.empty} />
<span className={style.text}>{text}</span>
</div>
);
}