mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-20 14:29:51 -04:00
This is a link not a button because: - it’s less prominent—delete is an infrequent action - it’s a two-step process, and only the second part changes any data (so it has a button)
38 lines
497 B
SCSS
38 lines
497 B
SCSS
.page-footer {
|
|
|
|
margin-bottom: 50px;
|
|
|
|
&-back-link {
|
|
display: block;
|
|
margin-top: $gutter;
|
|
}
|
|
|
|
&-delete-link {
|
|
|
|
line-height: 40px;
|
|
padding: 0 0 0 5px;
|
|
|
|
a:visited,
|
|
a:link {
|
|
color: $error-colour;
|
|
display: inline-block;
|
|
vertical-align: center;
|
|
}
|
|
|
|
a:hover,
|
|
a:active {
|
|
color: $mellow-red;
|
|
}
|
|
|
|
}
|
|
|
|
|
|
.button {}
|
|
|
|
.button-destructive {
|
|
@include button($error-colour);
|
|
padding: 0.52632em 0.78947em 0.26316em 0.78947em;
|
|
}
|
|
|
|
}
|