Skip to content

Commit

Permalink
Add some color
Browse files Browse the repository at this point in the history
The color isn't robust, but it's better than no color!

Issue #27
  • Loading branch information
slifty committed Oct 1, 2021
1 parent 6cae5aa commit 6648f3c
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 12 deletions.
2 changes: 1 addition & 1 deletion cgap/static/organization.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ app.component('Organization', {
},

template: `
<h1>Organization (#{{organization.id}})</h1>
<h1 class="text-primary">Organization (#{{organization.id}})</h1>
<h2>Organization Fields</h2>
<table class="table">
<thead>
Expand Down
2 changes: 1 addition & 1 deletion cgap/static/proposal.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ app.component('Proposal', {
},

template: `
<h1>Proposal (#{{proposal.id}})</h1>
<h1 class="text-primary">Proposal (#{{proposal.id}})</h1>
<table class="table">
<thead>
<tr>
Expand Down
2 changes: 1 addition & 1 deletion cgap/templates/apply.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

{% block content %}
<div id="app">
<h1>Apply here</h1>
<h1 class="text-primary">Apply here</h1>
<autofill-form></autofill-form>
</div>
<script type="text/javascript">
Expand Down
9 changes: 2 additions & 7 deletions cgap/templates/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,8 @@
<script type="text/javascript" src="{{ url_for('static', filename='lib/js/vue.min.js') }}"></script>
{% block head %}{% endblock %}
</head>
<body>
<div class="container">
{% for message in get_flashed_messages() %}
<div class="alert alert-primary" role="alert">{{ message }}</div>
{% endfor %}
</div>
<div class="container">
<body style="background: #bdcfeb">
<div class="container m-5 p-5 rounded border border-2" style="background: #fff">
{% block content %}{% endblock %}
</div>
</body>
Expand Down
2 changes: 1 addition & 1 deletion cgap/templates/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
{% block title %}Welcome{% endblock %}

{% block content %}
<h1>CGAP Proof-of-Concept Screens</h1>
<h1 class="text-primary">CGAP Proof-of-Concept Screens</h1>

<p>This proof-of-concept shows severals screens demonstrating how
properly access-controlled shared data can help grantseekers and
Expand Down
2 changes: 1 addition & 1 deletion cgap/templates/search.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

{% block content %}
<div id="app">
<h1>Search Organizations</h1>
<h1 class="text-primary">Search Organizations</h1>
<proposal-search></proposal-search>
</div>
<script type="text/javascript">
Expand Down

0 comments on commit 6648f3c

Please sign in to comment.