Skip to content

Commit

Permalink
Merge pull request VitorCarvalho67#58 from VitorCarvalho67/dev
Browse files Browse the repository at this point in the history
Update table view
  • Loading branch information
VitorCarvalho67 authored Aug 8, 2024
2 parents d16a76c + a029cb7 commit 676fde5
Show file tree
Hide file tree
Showing 14 changed files with 41 additions and 9 deletions.
6 changes: 5 additions & 1 deletion client/src/scss/pages/admin/_tableCoordenador.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,16 @@ main {
.table-row {
display: flex;
flex-direction: row;
border-bottom: 1px dashed $font-color-dark-2;
}

.table-row1{
border-bottom: 0px solid $font-color-dark;
}

.table-cell {
flex: 1;
padding: 8px;
border-right: 1px solid #ddd;
font-size: 1rem;
@include font-inter(300);
color: $font-color-dark;
Expand Down
5 changes: 5 additions & 0 deletions client/src/scss/pages/admin/_tableCurso.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ main {
.table-row {
display: flex;
flex-direction: row;
border-bottom: 1px dashed $font-color-dark-2;
}

.table-row1{
border-bottom: 0px solid $font-color-dark;
}

.table-cell {
Expand Down
5 changes: 5 additions & 0 deletions client/src/scss/pages/admin/_tableEmpresa.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ main {
.table-row {
display: flex;
flex-direction: row;
border-bottom: 1px dashed $font-color-dark-2;
}

.table-row1{
border-bottom: 0px solid $font-color-dark;
}

.table-cell {
Expand Down
4 changes: 4 additions & 0 deletions client/src/scss/pages/admin/_tableEstagio.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,12 @@ main {
.table-row {
display: flex;
flex-direction: row;
border-bottom: 1px dashed $font-color-dark-2;
}

.table-row1{
border-bottom: 0px solid $font-color-dark;
}
.table-cell {
flex: 1;
padding: 8px;
Expand Down
5 changes: 5 additions & 0 deletions client/src/scss/pages/admin/_tableFuncionario.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ main {
.table-row {
display: flex;
flex-direction: row;
border-bottom: 1px dashed $font-color-dark-2;
}

.table-row1{
border-bottom: 0px solid $font-color-dark;
}

.table-cell {
Expand Down
5 changes: 5 additions & 0 deletions client/src/scss/pages/admin/_tableProfessor.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ main {
.table-row {
display: flex;
flex-direction: row;
border-bottom: 1px dashed $font-color-dark-2;
}

.table-row1{
border-bottom: 0px solid $font-color-dark;
}

.table-cell {
Expand Down
5 changes: 5 additions & 0 deletions client/src/scss/pages/admin/_tableTurma.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,11 @@ main {
.table-row {
display: flex;
flex-direction: row;
border-bottom: 1px dashed $font-color-dark-2;
}

.table-row1{
border-bottom: 0px solid $font-color-dark;
}

.table-cell {
Expand Down
3 changes: 1 addition & 2 deletions client/src/views/admin/TableCoordenador.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="table">
<div class="table-header">
<div class="table-row">
<div class="table-row table-row1">
<div class="table-cell">Coordenadores Registrados</div>
</div>
</div>
Expand All @@ -33,7 +33,6 @@
</div>
</template>


<script>
import Header from '../../components/Header.vue';
import AsideDashboard from '../../components/admin/AsideDashboard.vue';
Expand Down
2 changes: 1 addition & 1 deletion client/src/views/admin/TableCurso.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="table">
<div class="table-header">
<div class="table-row">
<div class="table-row table-row1">
<div class="table-cell">Cursos Registrados</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/views/admin/TableEmpresa.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="table">
<div class="table-header">
<div class="table-row">
<div class="table-row table-row1">
<div class="table-cell">Empresas Registradas</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/views/admin/TableEstagio.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="table">
<div class="table-header">
<div class="table-row">
<div class="table-row table-row1">
<div class="table-cell">Vagas Registradas</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/views/admin/TableFuncionario.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="table">
<div class="table-header">
<div class="table-row">
<div class="table-row table-row1">
<div class="table-cell">Funcionários Registrados</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/views/admin/TableTurma.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="table">
<div class="table-header">
<div class="table-row">
<div class="table-row table-row1">
<div class="table-cell">Turmas Registradas</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion client/src/views/admin/Tableprofessor.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</div>
<div class="table">
<div class="table-header">
<div class="table-row">
<div class="table-row table-row1">
<div class="table-cell">Professores Registrados</div>
</div>
</div>
Expand Down

0 comments on commit 676fde5

Please sign in to comment.