Rename default category and change color to grey

This commit is contained in:
Joey Yakimowich-Payne 2020-03-17 19:57:29 -06:00 committed by Dominik Picheta
commit f35d6c4a32
2 changed files with 2 additions and 2 deletions

View file

@ -22,7 +22,7 @@ table th {
// Custom styles.
// - Navigation bar.
$navbar-height: 60px;
$default-category-color: #98c766;
$default-category-color: #a3a3a3;
$logo-height: $navbar-height - 20px;
.navbar-button {

View file

@ -66,7 +66,7 @@ proc initialiseDb(admin: tuple[username, password, email: string],
db.exec(sql"""
insert into category (id, name, description, color)
values (0, 'Default', 'The default category', '');
values (0, 'Unsorted', 'No category has been chosen yet.', '');
""")
# -- Thread