From 2098946be61ea8b36c8066159e56bc911536ea02 Mon Sep 17 00:00:00 2001 From: "E. Almqvist" Date: Mon, 21 Feb 2022 13:31:45 +0100 Subject: [PATCH] SQL: User now has default of 0 rep --- src/sql/tables/User.sql | 2 +- src/views/stylesheets/style.sass | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/src/sql/tables/User.sql b/src/sql/tables/User.sql index 47abb35..17f2959 100644 --- a/src/sql/tables/User.sql +++ b/src/sql/tables/User.sql @@ -6,6 +6,6 @@ CREATE TABLE IF NOT EXISTS "User" ( "bio_text" TEXT NOT NULL DEFAULT 'No information given.', "balance" REAL NOT NULL DEFAULT 0, "avatar_url" TEXT NOT NULL DEFAULT '/avatars/default.png', - "reputation" INTEGER NOT NULL DEFAULT 100, + "reputation" INTEGER NOT NULL DEFAULT 0, PRIMARY KEY("id" AUTOINCREMENT) ); diff --git a/src/views/stylesheets/style.sass b/src/views/stylesheets/style.sass index fbe9245..32ea5aa 100644 --- a/src/views/stylesheets/style.sass +++ b/src/views/stylesheets/style.sass @@ -216,8 +216,7 @@ ul.button-container width: 100% height: 100% max-width: 70rem - padding: 2rem - padding-bottom: 0 + padding-top: 2rem margin: 0 auto .card-container