Skip to content

Commit

Permalink
Merge pull request #595 from bcgov/sam-styling
Browse files Browse the repository at this point in the history
Styling
  • Loading branch information
shaunlumbcgov authored Oct 1, 2024
2 parents 37b0b3c + 9cd72c0 commit 4e8a8e6
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 13 deletions.
4 changes: 2 additions & 2 deletions frontend/src/components/DisplayTable.vue
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<template>
<v-container fluid>
<!-- User Interface controls -->
<v-row>
<v-row class="mt-n16">
<slot name="create"></slot>
<v-row v-if="showFilter" id="filter">
<v-col lg="8" class="px-0 float-left"></v-col>
<v-col sm="12" lg="4" class="my-1 table-filter p-0">
<v-col sm="12" lg="4" class="my-1 pr-3 table-filter p-0">
<v-row>
<v-col cols="12">
<v-form>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Programs/AlgorithmRules.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="algorithm-rules">
<h3>Algorithm Rules</h3>
<h3 class="ml-3 mt-5">Algorithm Rules</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="optional-graduation-program-rules">
<h3>Optional Program Rules</h3>
<h3 class="ml-3 mt-5">Optional Program Rules</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<h3>Optional Programs</h3>
<h3 class="ml-3 mt-5">Optional Programs</h3>
<DisplayTable
v-bind:items="graduationOptionalPrograms"
v-bind:fields="graduationOptionalProgramsFields"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="graduation-program-rules">
<h3>Program Rules</h3>
<h3 class="ml-3 mt-5">Program Rules</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="transcript-message">
<h3>Transcript Messaging</h3>
<h3 class="ml-3 mt-5">Transcript Messaging</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Programs/GraduationPrograms.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div id="graduation-programs">
<h3>Programs</h3>
<h3 class="ml-3 mt-5">Programs</h3>
<v-progress-circular
v-if="isLoading"
color="primary"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Programs/LetterGrades.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<h3>Letter Grades</h3>
<h3 class="ml-3 mt-5">Letter Grades</h3>
<DisplayTable
v-bind:items="letterGrades"
v-bind:filterOn="toFilterItem"
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/components/Programs/RequirementTypes.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<template>
<div>
<h3>Requirement Type Codes</h3>
<p>
<h3 class="ml-3 mt-5">Requirement Type Codes</h3>
<p class="ml-3">
Requirement type codes support how the algorithm runs program rules and
optional program rules.
</p>
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/components/Programs/SpecialCases.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<div>
<h3>Assessment Special Case Codes</h3>
<h3 class="ml-3 mt-5">Assessment Special Case Codes</h3>
<DisplayTable
v-bind:items="specialCases"
v-bind:filterOn="toFilterItem"
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/Courses.vue
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
></DisplayTable>
</v-window-item>
<v-window-item value="courseRestrictionsTab">
<v-card-text>
<v-card-text class="mt-12">
<DisplayTable
title="Course restrictions"
v-bind:items="courseRestrictions"
Expand Down
2 changes: 2 additions & 0 deletions frontend/src/views/Login.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<template>
<v-container class="d-flex justify-center">
<v-row>
<v-spacer />
<v-col cols="12" md="4" lg="4">
<v-card class="pt-3 pb-4">
<v-card-title>
Expand All @@ -17,6 +18,7 @@
</v-card-actions>
</v-card>
</v-col>
<v-spacer />
</v-row>
</v-container>
</template>
Expand Down

0 comments on commit 4e8a8e6

Please sign in to comment.