Skip to content
Merged
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
19 changes: 19 additions & 0 deletions app/assets/stylesheets/components/session.css
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,25 @@
line-height: var(--line-height-relaxed);
}

.session-subtitle {
margin: 0 0 var(--spacing-3);
color: var(--color-text-primary);
font-size: var(--font-size-base);
font-weight: var(--font-weight-semibold);
}

.session-features {
margin: 0 0 var(--spacing-6);
padding-left: var(--spacing-5);
color: var(--color-text-secondary);
font-size: var(--font-size-sm);
line-height: var(--line-height-relaxed);
}

.session-features li + li {
margin-top: var(--spacing-2);
}

.session-oauth {
margin-bottom: var(--spacing-6);
}
Expand Down
8 changes: 8 additions & 0 deletions app/views/registrations/new.html.slim
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,14 @@
.session-card
h1.session-title Register
p.session-text Enter your email. If it's in the archive, we'll verify and attach it. Otherwise, we'll create a new alias.
h2.session-subtitle Why register?
ul.session-features
li Track read progress and mark threads aware.
li Add private notes and tags to messages.
li @mention people or teams and share tags via notes.
li See team reading activity and unread counts.
li Follow contributors and get quick access to their recent threads.
li Connect all your email addresses to a single identity.

.session-oauth
= link_to '/auth/google_oauth2', class: 'session-oauth-button' do
Expand Down