diff --git a/strr-api/.dockerignore b/strr-api/.dockerignore index 68a4d94a..deec5151 100644 --- a/strr-api/.dockerignore +++ b/strr-api/.dockerignore @@ -9,3 +9,4 @@ Dockerfile sample_data tests +.coveragerc \ No newline at end of file diff --git a/strr-pm-web/app/app.config.ts b/strr-pm-web/app/app.config.ts index ebc396a1..ea564567 100644 --- a/strr-pm-web/app/app.config.ts +++ b/strr-pm-web/app/app.config.ts @@ -21,6 +21,9 @@ export default defineAppConfig({ } } }, + radioGroup: { + wrapper: 'max-w-bcGovInput' + }, select: { color: { red: { @@ -39,6 +42,21 @@ export default defineAppConfig({ empty: 'text-gray-700' } }, + textarea: { + base: 'bg-gray-100 hover:bg-gray-200 border-b text-gray-900 focus:border-b-2 h-20 hover:bg-gray-200', + rounded: 'rounded-none rounded-t', + color: { + gray: { + outline: 'border-gray-900 placeholder-gray-700 ring-0 focus:ring-0 focus:placeholder-primary-500' + }, + primary: { + outline: 'bg-primary-50 border-primary-500 text-gray-900 ring-0 focus:ring-0' + }, + red: { + outline: 'bg-red-50 border-red-600 placeholder-red-600 ring-0 focus:ring-0' + } + } + }, tooltip: { container: 'z-20 group min-h-fit opacity-100' } diff --git a/strr-pm-web/app/components/connect/Field.vue b/strr-pm-web/app/components/connect/Field.vue deleted file mode 100644 index d476e199..00000000 --- a/strr-pm-web/app/components/connect/Field.vue +++ /dev/null @@ -1,61 +0,0 @@ - - - diff --git a/strr-pm-web/app/components/connect/Section.vue b/strr-pm-web/app/components/connect/Section.vue index 75f448db..eb524470 100644 --- a/strr-pm-web/app/components/connect/Section.vue +++ b/strr-pm-web/app/components/connect/Section.vue @@ -1,31 +1,29 @@ diff --git a/strr-pm-web/app/components/connect/address/Index.vue b/strr-pm-web/app/components/connect/address/Index.vue index 68dd8c2f..51d2168f 100644 --- a/strr-pm-web/app/components/connect/address/Index.vue +++ b/strr-pm-web/app/components/connect/address/Index.vue @@ -130,12 +130,12 @@ const addressComplete = () => { /> - + diff --git a/strr-pm-web/app/components/connect/fee/ExtraFee.vue b/strr-pm-web/app/components/connect/fee/ExtraFee.vue index e909d399..44127016 100644 --- a/strr-pm-web/app/components/connect/fee/ExtraFee.vue +++ b/strr-pm-web/app/components/connect/fee/ExtraFee.vue @@ -2,7 +2,7 @@ defineProps<{ description: string, fee: number, showFeeValue: boolean }>()