Chore: Moved from css to sass, god knows what to do now.

Chore: Prettier line length changed to 120 from 100
Fix: Hard coded the face as the primary color to make the buttons stand out
This commit is contained in:
2023-03-13 23:52:44 +05:30
parent b021861ba3
commit efa2af396d
123 changed files with 313 additions and 836 deletions

View File

@ -8,20 +8,16 @@ import { HomeComponent } from './home/home.component';
const routes: Routes = [
{
path: 'beer-sale-report',
loadChildren: () =>
import('./beer-sale-report/beer-sale-report.module').then((mod) => mod.BeerSaleReportModule),
loadChildren: () => import('./beer-sale-report/beer-sale-report.module').then((mod) => mod.BeerSaleReportModule),
},
{
path: 'bill-settlement-report',
loadChildren: () =>
import('./bill-settlement-report/bill-settlement-report.module').then(
(mod) => mod.BillSettlementReportModule,
),
import('./bill-settlement-report/bill-settlement-report.module').then((mod) => mod.BillSettlementReportModule),
},
{
path: 'cashier-report',
loadChildren: () =>
import('./cashier-report/cashier-report.module').then((mod) => mod.CashierReportModule),
loadChildren: () => import('./cashier-report/cashier-report.module').then((mod) => mod.CashierReportModule),
},
{
path: 'customers',
@ -33,8 +29,7 @@ const routes: Routes = [
},
{
path: 'discount-report',
loadChildren: () =>
import('./discount-report/discount-report.module').then((mod) => mod.DiscountReportModule),
loadChildren: () => import('./discount-report/discount-report.module').then((mod) => mod.DiscountReportModule),
},
{
path: 'guest-book',
@ -42,8 +37,7 @@ const routes: Routes = [
},
{
path: 'header-footer',
loadChildren: () =>
import('./header-footer/header-footer.module').then((mod) => mod.HeaderFooterModule),
loadChildren: () => import('./header-footer/header-footer.module').then((mod) => mod.HeaderFooterModule),
},
{
path: 'modifiers',
@ -52,9 +46,7 @@ const routes: Routes = [
{
path: 'modifier-categories',
loadChildren: () =>
import('./modifier-categories/modifier-categories.module').then(
(mod) => mod.ModifierCategoriesModule,
),
import('./modifier-categories/modifier-categories.module').then((mod) => mod.ModifierCategoriesModule),
},
{
path: 'regimes',
@ -71,21 +63,16 @@ const routes: Routes = [
{
path: 'product-sale-report',
loadChildren: () =>
import('./product-sale-report/product-sale-report.module').then(
(mod) => mod.ProductSaleReportModule,
),
import('./product-sale-report/product-sale-report.module').then((mod) => mod.ProductSaleReportModule),
},
{
path: 'product-updates-report',
loadChildren: () =>
import('./product-updates-report/product-updates-report.module').then(
(mod) => mod.ProductUpdatesReportModule,
),
import('./product-updates-report/product-updates-report.module').then((mod) => mod.ProductUpdatesReportModule),
},
{
path: 'menu-categories',
loadChildren: () =>
import('./menu-category/menu-categories.module').then((mod) => mod.MenuCategoriesModule),
loadChildren: () => import('./menu-category/menu-categories.module').then((mod) => mod.MenuCategoriesModule),
},
{
path: 'roles',
@ -97,13 +84,11 @@ const routes: Routes = [
},
{
path: 'sale-report',
loadChildren: () =>
import('./sale-report/sale-report.module').then((mod) => mod.SaleReportModule),
loadChildren: () => import('./sale-report/sale-report.module').then((mod) => mod.SaleReportModule),
},
{
path: 'sale-categories',
loadChildren: () =>
import('./sale-category/sale-categories.module').then((mod) => mod.SaleCategoriesModule),
loadChildren: () => import('./sale-category/sale-categories.module').then((mod) => mod.SaleCategoriesModule),
},
{
path: 'sections',
@ -111,8 +96,7 @@ const routes: Routes = [
},
{
path: 'section-printers',
loadChildren: () =>
import('./section-printers/section-printers.module').then((mod) => mod.SectionPrintersModule),
loadChildren: () => import('./section-printers/section-printers.module').then((mod) => mod.SectionPrintersModule),
},
{
path: 'settings',
@ -120,8 +104,7 @@ const routes: Routes = [
},
{
path: 'settle-options',
loadChildren: () =>
import('./settle-option/settle-options.module').then((mod) => mod.SettleOptionsModule),
loadChildren: () => import('./settle-option/settle-options.module').then((mod) => mod.SettleOptionsModule),
},
{
path: 'tables',
@ -137,17 +120,12 @@ const routes: Routes = [
},
{
path: 'temporal-products',
loadChildren: () =>
import('./temporal-product/temporal-products.module').then(
(mod) => mod.TemporalProductsModule,
),
loadChildren: () => import('./temporal-product/temporal-products.module').then((mod) => mod.TemporalProductsModule),
},
{
path: 'update-product-prices',
loadChildren: () =>
import('./update-product-prices/update-product-prices.module').then(
(mod) => mod.UpdateProductPricesModule,
),
import('./update-product-prices/update-product-prices.module').then((mod) => mod.UpdateProductPricesModule),
},
{
path: 'users',