Skip to content

Commit

Permalink
fix: budget import
Browse files Browse the repository at this point in the history
  • Loading branch information
chrismclarke committed Feb 17, 2023
1 parent 657d838 commit 7d23904
Show file tree
Hide file tree
Showing 6 changed files with 19 additions and 7 deletions.
4 changes: 2 additions & 2 deletions apps/picsa-apps/extension-app-native/android/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ android {
applicationId "io.picsa.extension"
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 3015002
versionName "3.15.2"
versionCode 3015003
versionName "3.15.3"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
gap: 8px;
}
mat-form-field.input-field {
width: 55px;
width: 60px;
}
mat-form-field.input-field .mat-form-field-wrapper {
padding-bottom: 0;
Expand Down
2 changes: 1 addition & 1 deletion libs/environments/src/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ import packageJson from '../../../package.json';

export const APP_VERSION = {
number: packageJson.version,
date: '2023-01-31',
date: '2023-02-17',
};
2 changes: 1 addition & 1 deletion libs/shared/src/services/core/db/_server.db.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export class DBServerService implements AbstractDBService {
const ref = doc(this.firestore, `${endpoint}/${key}`);
const snapshot = await firebaseGetDoc(ref);
if (snapshot.exists()) {
return snapshot.data as T & IDBDoc;
return snapshot.data() as T & IDBDoc;
}
return undefined;
}
Expand Down
14 changes: 13 additions & 1 deletion libs/theme/src/_overrides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -35,10 +35,22 @@ div.mdc-dialog__actions {
padding-left: 0;
padding-right: 0;
}
// Increase size and set primary colour for text inputs
// Increase size and set primary colour for text inputs, remove inset
input.mat-mdc-input-element.mdc-text-field__input {
font-size: 30px;
width: 100%;
color: var(--color-primary) !important;
text-align: center;
// margin-left: -4px;
}
// Reduce padding and remove inset from fields with custom .input-field class
mat-form-field.input-field {
.mat-mdc-text-field-wrapper {
padding: 4px !important;
}
.mat-mdc-form-field-infix {
margin-left: 0;
}
}
// Reduce placeholder font size (inherited above)
.mdc-text-field__input::placeholder {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "picsa-apps",
"version": "3.15.2",
"version": "3.15.3",
"license": "See LICENSE",
"scripts": {
"ng": "nx",
Expand Down

0 comments on commit 7d23904

Please sign in to comment.