diff --git a/libs/openchallenges/home/src/lib/challenge-registration/_challenge-registration-theme.scss b/libs/openchallenges/home/src/lib/challenge-registration/_challenge-registration-theme.scss index 3407784b3a..77ac5128a8 100644 --- a/libs/openchallenges/home/src/lib/challenge-registration/_challenge-registration-theme.scss +++ b/libs/openchallenges/home/src/lib/challenge-registration/_challenge-registration-theme.scss @@ -1,7 +1,6 @@ @use 'sass:map'; @use '@angular/material' as mat; - @mixin color($theme) { $config: mat.get-color-config($theme); $primary: map.get($config, 'primary'); @@ -12,15 +11,20 @@ color: white; .btn-block { - background-color: mat.get-color-from-palette($accent); + color: white; + background-color: mat.get-color-from-palette($accent); } .btn-block:hover { - background-color: mat.get-color-from-palette($accent, 500); + background-color: mat.get-color-from-palette($accent, 500); } } } -@mixin typography($theme) {} +@mixin typography($theme) { + #organizer-cta .btn-block { + text-transform: uppercase; + } +} @mixin theme($theme) { $color-config: mat.get-color-config($theme); @@ -32,4 +36,4 @@ @if $typography-config != null { @include typography($theme); } -} \ No newline at end of file +}