mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-05-05 16:38:59 -04:00
Like the template ID this is an infrequently-used action on a template and doesn’t belong at the same level as ‘Upload recipients’ or ‘Send yourself’ a test. We don’t think it’s information that’s useful to working out which template you want to interact with, so it shouldn’t be on the choose template page any more.
91 lines
1.3 KiB
SCSS
91 lines
1.3 KiB
SCSS
.column-whole {
|
|
@include grid-column(1/1);
|
|
}
|
|
|
|
.column-three-quarters {
|
|
@include grid-column(3/4);
|
|
}
|
|
|
|
.column-one-sixth {
|
|
@include grid-column(1/6);
|
|
}
|
|
|
|
.column-five-sixths {
|
|
@include grid-column(5/6);
|
|
}
|
|
|
|
.column-one-eighth {
|
|
@include grid-column(1/8);
|
|
}
|
|
|
|
.column-seven-eighths {
|
|
@include grid-column(7/8);
|
|
}
|
|
|
|
%bottom-gutter,
|
|
.bottom-gutter {
|
|
@extend %contain-floats;
|
|
margin-bottom: $gutter;
|
|
clear: both;
|
|
}
|
|
|
|
.bottom-gutter-2-3 {
|
|
@extend %bottom-gutter;
|
|
margin-bottom: $gutter-two-thirds;
|
|
}
|
|
|
|
.bottom-gutter-1-2 {
|
|
@extend %bottom-gutter;
|
|
margin-bottom: $gutter-half;
|
|
}
|
|
|
|
.bottom-gutter-1-3 {
|
|
@extend %bottom-gutter;
|
|
margin-bottom: $gutter/3;
|
|
}
|
|
|
|
.bottom-gutter-3-2 {
|
|
@extend %bottom-gutter;
|
|
margin-bottom: $gutter * 3/2;
|
|
}
|
|
|
|
.bottom-gutter-2 {
|
|
@extend %bottom-gutter;
|
|
margin-bottom: $gutter * 2;
|
|
}
|
|
|
|
.align-with-heading {
|
|
display: block;
|
|
text-align: center;
|
|
margin-top: 13px;
|
|
padding-left: 2px;
|
|
padding-right: 2px;
|
|
}
|
|
|
|
.align-with-heading-copy {
|
|
display: block;
|
|
margin-top: 25px;
|
|
}
|
|
|
|
.align-with-heading-copy-right {
|
|
display: block;
|
|
margin-top: 35px;
|
|
text-align: right;
|
|
}
|
|
|
|
.global-cookie-message {
|
|
p {
|
|
@extend %site-width-container;
|
|
}
|
|
}
|
|
|
|
.footer-nav {
|
|
@include copy-16;
|
|
margin-bottom: $gutter-two-thirds;
|
|
|
|
a {
|
|
display: inline-block;
|
|
margin-right: $gutter-half;
|
|
}
|
|
}
|