diff --git a/COMET.Web.Common/Components/Dashboard.razor b/COMET.Web.Common/Components/Dashboard.razor index 98fa5d4d..79456a43 100644 --- a/COMET.Web.Common/Components/Dashboard.razor +++ b/COMET.Web.Common/Components/Dashboard.razor @@ -23,7 +23,9 @@ @using COMET.Web.Common.Enumerations @namespace COMET.Web.Common.Components
-

@(this.ConfigurationService.GetText(TextConfigurationKind.LandingPageTitle))

+
+

@(this.ConfigurationService.GetText(TextConfigurationKind.LandingPageTitle))

+
@foreach (var application in this.RegistrationService.RegisteredApplications) { diff --git a/COMET.Web.Common/Components/Dashboard.razor.css b/COMET.Web.Common/Components/Dashboard.razor.css index 8bea70e6..1131e4f4 100644 --- a/COMET.Web.Common/Components/Dashboard.razor.css +++ b/COMET.Web.Common/Components/Dashboard.razor.css @@ -1,3 +1,10 @@ -#dashboard-title{ - text-align:center; -} \ No newline at end of file +.dashboard-title-container{ + width:100%; + display:flex; + justify-content:center; + align-items:center; +} + +#dashboard-title{ + margin:0; +}