Skip to content

Commit

Permalink
🔖 2.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Khaoz-Topsy committed Sep 10, 2023
1 parent 112f453 commit 8ffd9fb
Show file tree
Hide file tree
Showing 4 changed files with 89 additions and 35 deletions.
105 changes: 78 additions & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 3 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "nmscd.web",
"version": "2.1.3",
"version": "2.1.4",
"scripts": {
"build": "npm-run-all --sequential setup:* live:* sass:* template:*",
"setup": "npm i && npm-run-all --sequential setup:* live:*",
Expand Down Expand Up @@ -30,11 +30,8 @@
"concurrently": "^8.2.0",
"dotenv": "^16.2.0",
"handlebars": "^4.7.7",
"nodemon": "^2.0.20",
"nodemon": "^3.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.43.4"
},
"overrides": {
"semver": "~7.5.2"
}
}
}
2 changes: 1 addition & 1 deletion template/handlebar/index.html.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@

<section class="members">
<div class="container">
<div class="row">
<div class="row justify">
<div class="col-12">
<div class="heading">
<h2>Our Members</h2>
Expand Down
8 changes: 7 additions & 1 deletion template/scss/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,12 @@ body {
background-color: var.$bodyColour;
}

.row.justify {
justify-content: center;
display: flex;
flex-wrap: wrap;
}

.mt-8 {
margin-top: 8em;
}
Expand Down Expand Up @@ -68,4 +74,4 @@ img {

.hidden {
display: none !important;
}
}

0 comments on commit 8ffd9fb

Please sign in to comment.