diff --git a/frontend/src/App.vue b/frontend/src/App.vue index a5429c662..fcaf6bb0b 100755 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -56,4 +56,8 @@ export default { ); height: 13px; } + +.text-color-gdd-yellow { + color: rgb(197 141 56); +} diff --git a/frontend/src/assets/scss/gradido-template.scss b/frontend/src/assets/scss/gradido-template.scss index 97d91937f..fc1ccf870 100644 --- a/frontend/src/assets/scss/gradido-template.scss +++ b/frontend/src/assets/scss/gradido-template.scss @@ -178,6 +178,9 @@ a:hover, font-size: 1.5em; } +.zindex1 { + z-index: 1; +} .zindex10 { z-index: 10; } @@ -198,6 +201,13 @@ a:hover, z-index: 100000; } +.opacity-1 { + opacity: 1; +} +.opacity-05 { + opacity: 0.5; +} + .gradido-global-color-blue { color: #0e79bc; } diff --git a/frontend/src/components/GddSend/TransactionForm.vue b/frontend/src/components/GddSend/TransactionForm.vue index 69c6b6b45..87929159f 100644 --- a/frontend/src/components/GddSend/TransactionForm.vue +++ b/frontend/src/components/GddSend/TransactionForm.vue @@ -1,142 +1,155 @@