Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions app/frontend/stylesheets/snippets/sidebar.scss
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,12 @@
}
}

.scenario-stardance .page-header-centered {
h1 { color: #ffffff !important; }
p { color: rgba(255, 255, 255, 0.9) !important; }
.text-muted { color: rgba(255, 255, 255, 0.7) !important; }
}

// Common card and list layouts
.card-list {
display: grid;
Expand Down
2 changes: 1 addition & 1 deletion app/views/layouts/logged_out.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
body_style = content_for?(:body_style) ? yield(:body_style) : nil
portal_scenario = respond_to?(:portal_onboarding_scenario) ? portal_onboarding_scenario : nil
%>
<body class="<%= content_for?(:portal_wrapper) ? '' : (content_for?(:body_class) ? yield(:body_class) : 'auth-layout') %>" hx-headers='{"X-CSRF-Token": "<%= form_authenticity_token %>"}' hx-boost="false"<%= " style=\"#{body_style}\"".html_safe if body_style %>>
<body class="<%= [content_for?(:portal_wrapper) ? '' : (content_for?(:body_class) ? yield(:body_class) : 'auth-layout'), portal_scenario ? "scenario-#{portal_scenario.class.slug}" : ""].compact_blank.join(' ') %>" hx-headers='{"X-CSRF-Token": "<%= form_authenticity_token %>"}' hx-boost="false"<%= " style=\"#{body_style}\"".html_safe if body_style %>>
<%= render "shared/scenario_background_style", scenario: portal_scenario %>
<% if content_for?(:portal_wrapper) %>
<main class="container portal-container">
Expand Down