Files
notifications-admin/app/assets/stylesheets/_grids.scss
Chris Hill-Scott eea8ae5be4 Move ‘new thing’ buttons alongside heading
On the send messages and manage team pages we have big green buttons for
adding/inviting a new template or team member.

On the add template page it was at the bottom, and often got missed.

On the manage team page it was at the top, but maybe too prominent because it’s
big and green.

This commit tries putting it in the top right of the page instead (except when
the template page is empty, in which case it’s unchanged).
2016-03-14 10:39:53 +00:00

29 lines
410 B
SCSS

.column-three-quarters {
@include grid-column(3/4);
}
.column-one-eighth {
@include grid-column(1/8);
}
.column-seven-eighths {
@include grid-column(7/8);
}
.bottom-gutter {
margin-bottom: $gutter;
clear: both;
}
.bottom-gutter-2-3 {
margin-bottom: $gutter * 2/3;
}
.align-with-heading {
display: block;
text-align: center;
margin-top: 45px;
padding-left: 2px;
padding-right: 2px;
}