Make appeal form centered and create landing page
This commit is contained in:
parent
d2e064e2b4
commit
fcb64db137
|
|
@ -7,12 +7,14 @@
|
||||||
</app-header>
|
</app-header>
|
||||||
<main>
|
<main>
|
||||||
<section class="darkmodeSection appeal-container">
|
<section class="darkmodeSection appeal-container">
|
||||||
<section class="columnSection">
|
<section class="formPage">
|
||||||
<div class="columnContainer">
|
<img ngSrc="/public/img/logos/logo.png" alt="Discord" height="319" width="550"/>
|
||||||
<div class="columnParagraph">
|
<h1>Punishment Appeal</h1>
|
||||||
<p>hi</p>
|
<p>We aim to respond within 48 hours.</p>
|
||||||
</div>
|
<button mat-raised-button>
|
||||||
</div>
|
<mat-icon>send</mat-icon>
|
||||||
|
Minecraft Appeal
|
||||||
|
</button>
|
||||||
</section>
|
</section>
|
||||||
</section>
|
</section>
|
||||||
</main>
|
</main>
|
||||||
|
|
|
||||||
|
|
@ -14,3 +14,11 @@ main {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
overflow-y: auto;
|
overflow-y: auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.formPage {
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
align-items: center;
|
||||||
|
text-align: center;
|
||||||
|
margin: auto;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -2,11 +2,17 @@ import {AfterViewInit, Component, ElementRef, OnInit, Renderer2} from '@angular/
|
||||||
import {FormControl, FormGroup, Validators} from '@angular/forms';
|
import {FormControl, FormGroup, Validators} from '@angular/forms';
|
||||||
import {AppealsService, MinecraftAppeal} from '@api';
|
import {AppealsService, MinecraftAppeal} from '@api';
|
||||||
import {HeaderComponent} from '@header/header.component';
|
import {HeaderComponent} from '@header/header.component';
|
||||||
|
import {NgOptimizedImage} from '@angular/common';
|
||||||
|
import {MatButtonModule} from '@angular/material/button';
|
||||||
|
import {MatIconModule} from '@angular/material/icon';
|
||||||
|
|
||||||
@Component({
|
@Component({
|
||||||
selector: 'app-appeal',
|
selector: 'app-appeal',
|
||||||
imports: [
|
imports: [
|
||||||
HeaderComponent
|
HeaderComponent,
|
||||||
|
NgOptimizedImage,
|
||||||
|
MatButtonModule,
|
||||||
|
MatIconModule
|
||||||
],
|
],
|
||||||
templateUrl: './appeal.component.html',
|
templateUrl: './appeal.component.html',
|
||||||
styleUrl: './appeal.component.scss'
|
styleUrl: './appeal.component.scss'
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user