1
0
Fork 0
mirror of https://github.com/Chocobozzz/PeerTube.git synced 2025-10-03 09:49:20 +02:00

Redesign about pages

This commit is contained in:
Chocobozzz 2025-01-07 10:44:48 +01:00
parent fa7d8c0ed4
commit f4d6cecf10
No known key found for this signature in database
GPG key ID: 583A612D890159BE
81 changed files with 1819 additions and 935 deletions

View file

@ -1,5 +1,5 @@
import { CommonModule } from '@angular/common'
import { Component, Input, OnChanges, OnDestroy, OnInit } from '@angular/core'
import { booleanAttribute, Component, Input, OnChanges, OnDestroy, OnInit } from '@angular/core'
import { ActivatedRoute, NavigationEnd, Router, RouterModule } from '@angular/router'
import { GlobalIconComponent, GlobalIconName } from '@app/shared/shared-icons/global-icon.component'
import { logger } from '@root-helpers/logger'
@ -47,6 +47,9 @@ export class HorizontalMenuComponent implements OnInit, OnChanges, OnDestroy {
@Input() h1: string
@Input() h1Icon: GlobalIconName
@Input({ transform: booleanAttribute }) areChildren = false
@Input({ transform: booleanAttribute }) withMarginBottom = true
activeParent: HorizontalMenuEntry
children: HorizontalMenuEntry[] = []