diff --git a/CHANGELOG.md b/CHANGELOG.md index 7735084e3..d1d628341 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.56.2 - 2022-05-12 + +### Fixed + +- Fix invitation page app bar text (centered) + ## 0.56.1 - 2022-05-12 ### Fixed diff --git a/android/app/build.gradle b/android/app/build.gradle index 1a11c6c70..105a83ab0 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -6,8 +6,8 @@ android { applicationId "io.numbersprotocol.capturelite" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 391 - versionName "0.56.1" + versionCode 392 + versionName "0.56.2" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } buildFeatures { diff --git a/package-lock.json b/package-lock.json index 760e617a2..a1e303e48 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "capture-lite", - "version": "0.56.1", + "version": "0.56.2", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "capture-lite", - "version": "0.56.1", + "version": "0.56.2", "dependencies": { "@angular/animations": "^12.2.4", "@angular/cdk": "^12.2.4", diff --git a/package.json b/package.json index df439b56f..8fbe457ef 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "capture-lite", - "version": "0.56.1", + "version": "0.56.2", "author": "numbersprotocol", "homepage": "https://numbersprotocol.io/", "scripts": { diff --git a/src/app/features/invitation/invitation.page.scss b/src/app/features/invitation/invitation.page.scss index 1b56d4250..c6722f769 100644 --- a/src/app/features/invitation/invitation.page.scss +++ b/src/app/features/invitation/invitation.page.scss @@ -1,3 +1,9 @@ +mat-toolbar { + span { + padding-right: 40px; + } +} + ion-card { padding-top: 8px; padding-bottom: 8px;