Did a lot of styling on letter & register view; introduced a new accent color. Added scroll and submit vutton, TODO style submit button

This commit is contained in:
schnulller
2022-06-09 02:07:21 +02:00
parent c2ecf0ea23
commit 11ccd7772e
20 changed files with 2324 additions and 4734 deletions

View File

@@ -61,7 +61,7 @@ public class RegisterController : Controller {
}
// Model instantiation
var model = new RegisterViewModel(category, id, res, title) {
var model = new RegisterViewModel(category, id, res, title, false) {
AvailableCategories = availableCategories,
};
@@ -104,7 +104,7 @@ public class RegisterController : Controller {
}
// Model instantiation
var model = new RegisterViewModel(category, id, res, title) {
var model = new RegisterViewModel(category, id, res, title, false) {
AvailableCategories = availableCategories,
};
@@ -154,7 +154,7 @@ public class RegisterController : Controller {
}
// Model instantiation
var model = new RegisterViewModel(category, id, res, title) {
var model = new RegisterViewModel(category, id, res, title, true) {
AvailableCategories = availableCategories,
AvailableSideCategories = AvailableSideCategories
};