Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix pautas #26

Merged
merged 2 commits into from
Nov 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion src/app/pages/participate/participate.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
font-family: "unb-pro", sans-serif;
}


.containner h1 {
color: #0087C8;
font-size: 13px;
Expand All @@ -22,4 +23,9 @@
margin-right: auto;
text-align: center;
height: -300px;
}
}

.input:focus {
outline: none !important;
border: 0.25px solid #0087C8;
}
2 changes: 1 addition & 1 deletion src/app/pages/participate/participate.component.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="containner">
<h1 [routerLink]="['/suggestAgenda']">
Sugira uma pauta
<button> Sugira uma pauta </button>
</h1>
<h1>
Solicite uma transmissão
Expand Down
17 changes: 14 additions & 3 deletions src/app/pages/suggest-agenda/suggest-agenda.component.css
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,11 @@
margin-top: 45px;
margin-bottom: 40px;
text-align: start;

}

.first {
border: 0.15px solid #3C3C3B;
border: 0.15px solid #969696;
margin-left: 29px;
width: 330px;
border-radius: 9px;
Expand All @@ -35,7 +36,7 @@ form ::placeholder {
}

.descricao {
border: 0.15px solid #3C3C3B;
border: 0.15px solid #969696;
margin-left: 29px;
width: 330px;
border-radius: 9px;
Expand All @@ -62,5 +63,15 @@ span {

.input:focus {
outline: none !important;
border: 0.25px solid #00A550;
border: 0.25px solid #0087C8;
}

.button {
padding: 3px 33px 3px 33px;
border-radius: 9px;
margin-top: 7px;
}

.button:hover {
border-color: #0087C8;
}
14 changes: 7 additions & 7 deletions src/app/pages/suggest-agenda/suggest-agenda.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,13 @@
<div class="mb-4">
<h1>Sugestão de Pautas</h1>
<form [formGroup]="suggestAgendaForm" (submit)="sendSuggestAgenda()" class="flex flex-col gap-y-3">
<input type="text" class="input first" name="tema" formControlName="tema" placeholder="Tema" >
<textarea class="input descricao" name="descicao" formControlName="descricao" placeholder="Descrição *" required></textarea>
<input type="text" class="input first" name="quando" formControlName="quando" placeholder="Quando (data e hora)" >
<input type="text" class="input first" name="local" formControlName="local" placeholder="Local" >
<input type="text" class="input first" name="responsavel" formControlName="responsavel" placeholder="Responsável *" required >
<input type="text" class="input first" name="telefone-responsavel" formControlName="telefoneResponsavel" placeholder="Telefone do Responsável *" required>
<input type="text" class="input first" name="email-contato" formControlName="emailContato" placeholder="E-mail para contato" >
<input pInputText type="text" class="input first button" name="tema" formControlName="tema" placeholder="Tema" >
<textarea pInputText class="input descricao button" name="descicao" formControlName="descricao" placeholder="Descrição *" required></textarea>
<input pInputText type="text" class="input first button" name="quando" formControlName="quando" placeholder="Quando (data e hora)" >
<input pInputText type="text" class="input first button" name="local" formControlName="local" placeholder="Local" >
<input pInputText type="text" class="input first button" name="responsavel" formControlName="responsavel" placeholder="Responsável *" required >
<input pInputText type="text" class="input first button" name="telefone-responsavel" formControlName="telefoneResponsavel" placeholder="Telefone do Responsável *" required>
<input pInputText type="text" class="input first button" name="email-contato" formControlName="emailContato" placeholder="E-mail para contato" >
<div>
<p style="color:#969696"><small>*Campo obrigatório</small></p>

Expand Down
Loading