Graphical App Completed. Somme UI bugs must be adapted
This commit is contained in:
@ -1,5 +1,6 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { DTFluxTitleComponent } from './view/pages/dtflux-title/dtflux-title.component';
|
||||
import { SetupComponent } from './view/pages/setup/setup.component';
|
||||
|
||||
export const routes: Routes = [
|
||||
{
|
||||
@ -7,11 +8,16 @@ export const routes: Routes = [
|
||||
redirectTo: '/dtflux-title',
|
||||
pathMatch: 'full'
|
||||
},
|
||||
{
|
||||
{
|
||||
path: 'dtflux-title',
|
||||
component: DTFluxTitleComponent,
|
||||
title: 'Unreal Title Sheets - Main'
|
||||
},
|
||||
{
|
||||
path: 'setup',
|
||||
component: SetupComponent,
|
||||
title: 'Unreal Title Sheets - Setup'
|
||||
},
|
||||
{
|
||||
path: '**',
|
||||
redirectTo: '/dtflux-title'
|
||||
|
||||
@ -1,5 +1,8 @@
|
||||
/* src/styles.scss - Variables globales Dark Theme */
|
||||
|
||||
// === FONTAWESOME IMPORT ===
|
||||
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');
|
||||
|
||||
// === DARK THEME PALETTE ===
|
||||
:root {
|
||||
// Background colors
|
||||
|
||||
Reference in New Issue
Block a user