Skip to content
This repository has been archived by the owner on May 2, 2022. It is now read-only.

Commit

Permalink
Fix type in postcss script (#288)
Browse files Browse the repository at this point in the history
* Fix type in postcss script

* Fix font with wishes of Amrit

* Reset font
  • Loading branch information
Adriaan authored Mar 24, 2020
1 parent 08b1c9b commit fca3eec
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion postcss.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ module.exports = {
preset: 'default'
}),
purgecss({
content: ['app/view/pages/*.ejs', 'app/views/partials/*.ejs'],
content: ['app/views/pages/*.ejs', 'app/views/partials/*.ejs'],
whitelist: colors.reduce((list, color) => {
// Add classes here when you add them in alert.ejs
list.push(
Expand Down
6 changes: 3 additions & 3 deletions static/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ h1 {
line-height: 120%;
}

h2{
h2 {
font-size: 1.875rem;
color: #d36767;
margin: 0.5rem 0;
Expand Down Expand Up @@ -407,12 +407,12 @@ input[type='submit']:focus {
}

.contributor-list::before {
content: "\2022";
content: '\2022';
color: #d36767;
font-size: larger;
display: inline-block;
width: 1.2em;
}
.contributor-list{
.contributor-list {
align-self: center;
}

0 comments on commit fca3eec

Please sign in to comment.