-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f7eba1f
commit a1391df
Showing
17 changed files
with
206 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,3 +41,6 @@ bin/terrafile | |
bin/konduit.sh | ||
bin/fetch_config.rb | ||
.byebug_history | ||
|
||
/app/assets/builds/* | ||
!/app/assets/builds/.keep |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
web: bin/rails server -p $PORT | ||
webpack: bin/webpack-dev-server | ||
sass: bin/rails dartsass:watch |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
//= link_tree ../images | ||
//= link_directory ../stylesheets .css | ||
//= link_tree ../builds | ||
//= link_tree ../../javascript .js | ||
//= link_tree ../../../vendor/javascript .js | ||
//= link_tree ../../../node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
// Sassy | ||
@import 'govuk-frontend/govuk/all'; | ||
@import 'custom'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,138 @@ | ||
.dashboard { | ||
display: grid; | ||
grid-template-columns: 1fr 1fr 1fr; | ||
grid-gap: 20px; /* Adjust this for your desired gap between columns */ | ||
} | ||
|
||
.kpi-widget { | ||
background-color: #1d70b8; | ||
border-radius: 5px; | ||
padding: 15px; | ||
text-align: center; | ||
|
||
.title { | ||
font-size: 28px; | ||
font-weight: bold; | ||
color: #fff; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.subtitle { | ||
font-size: 17px; | ||
font-weight: bold; | ||
color: #fff; | ||
margin: 0; | ||
padding: 0; | ||
} | ||
|
||
.value { | ||
font-size: 70px; | ||
font-weight: bold; | ||
color: #fff; | ||
display: block; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.value-small { | ||
font-size: 24px; | ||
font-weight: bold; | ||
color: #fff; | ||
display: block; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
.value-smallest { | ||
font-size: 20px; | ||
font-weight: bold; | ||
color: #fff; | ||
display: block; | ||
padding: 0; | ||
margin: 0; | ||
} | ||
|
||
.kpi-table { | ||
margin-top: 20px; | ||
margin-bottom: 20px; | ||
width: 100%; | ||
text-align: left; | ||
color: #fff; | ||
|
||
th { | ||
font-weight: bold; | ||
padding: 5px; | ||
} | ||
|
||
td { | ||
padding: 5px; | ||
font-size: 20px; | ||
} | ||
|
||
a { | ||
color: #fff; | ||
text-decoration: none; | ||
} | ||
} | ||
} | ||
|
||
.applicants-table { | ||
font-size: 15px; | ||
|
||
.govuk-table__head { | ||
position: sticky; | ||
top: 0; | ||
background-color: #fff; | ||
box-shadow: 0 0.3px 0 #b1b4b6; | ||
} | ||
|
||
th { | ||
vertical-align: middle; | ||
text-align: center; | ||
} | ||
|
||
td:not(:nth-child(-n + 2)) { | ||
width: 120px; | ||
} | ||
td { | ||
vertical-align: middle; | ||
} | ||
tr.sla-breached { | ||
background-color: #f8d7da; | ||
} | ||
} | ||
|
||
.flash { | ||
padding: 15px; | ||
margin-bottom: 20px; | ||
border: 1px solid transparent; | ||
border-radius: 4px; | ||
width: 100%; | ||
font-size: 1.2em; | ||
|
||
&.notice { | ||
color: #155724; | ||
background-color: #d4edda; | ||
border-color: #c3e6cb; | ||
} | ||
|
||
&.alert { | ||
color: #721c24; | ||
background-color: #f8d7da; | ||
border-color: #f5c6cb; | ||
} | ||
} | ||
|
||
#search { | ||
.row { | ||
display: flex; | ||
} | ||
|
||
.column { | ||
flex: 1; | ||
} | ||
|
||
.full-width { | ||
width: 100%; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
// Configure your import map in config/importmap.rb. Read more: https://github.com/rails/importmap-rails | ||
import { initAll } from "govuk-frontend" | ||
|
||
initAll(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/usr/bin/env sh | ||
|
||
if ! gem list foreman -i --silent; then | ||
echo "Installing foreman..." | ||
gem install foreman | ||
fi | ||
|
||
exec foreman start -f Procfile.dev "$@" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env ruby | ||
|
||
require_relative "../config/application" | ||
require "importmap/commands" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
# Pin npm packages by running ./bin/importmap | ||
|
||
pin "application", preload: true | ||
pin "govuk-frontend", to: "https://ga.jspm.io/npm:[email protected]/govuk-esm/all.mjs", preload: true |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.