Browse Source

fix: margin issue with team page

Signed-off-by: Jonathan <theflametrooper@gmail.com>
Jonathan 5 years ago
parent
commit
8529bd2bc9
2 changed files with 5 additions and 1 deletions
  1. 1 1
      backend/logic/actions/users.js
  2. 4 0
      frontend/components/pages/Team.vue

+ 1 - 1
backend/logic/actions/users.js

@@ -512,7 +512,7 @@ module.exports = {
 			if (err && err !== true) {
 				err = await utils.getError(err);
 				logger.error("FIND_BY_SESSION", `User not found. "${err}"`);
-				cb({status: 'failure', message: err});
+				cb({ status: 'failure', message: err });
 			} else {
 				let data = {
 					email: {

+ 4 - 0
frontend/components/pages/Team.vue

@@ -225,6 +225,10 @@ ul {
 	list-style: none;
 }
 
+.columns {
+	margin: 0;
+}
+
 .card-content .content {
 	font-size: 15px;
 }