Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix column/button alignment problems on source start page #4892

Merged
merged 2 commits into from
Oct 14, 2019
Merged
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
9 changes: 8 additions & 1 deletion securedrop/sass/_source_index.sass
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,15 @@
.index-row
display: flex
justify-content: space-between
align-self: flex-start
flex-wrap: wrap
width: 70%

.index-column
padding: .5em 2em 1em 2em
display: flex
flex-direction: column
justify-content: center
justify-content: space-between
width: 47%
border-top-width: 0
border-bottom-width: 0
Expand Down Expand Up @@ -74,6 +75,12 @@
// Standard secondary buttons have a margin to set them apart from the primary
margin-left: 0
margin-right: 10%
white-space: nowrap
text-transform: uppercase
border: 2px solid transparent

#login-button
border: 2px solid $color_button_blue

// Desktop view
@media only screen and (min-width: 768px)
Expand Down