mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-04 16:37:59 -04:00
For users who: - want to send messages from a template - want to edit templates For developers: - who need to get the ID of a template This commit mainly cleans up the choose template page so there are less options, and the options that are there are less wordy. This means: - moving ‘send yourself a test’ onto the send messages page, and making it button - stripping a lot of stuff out of the ‘send from API’ page, so it’s more obvious what the template ID is
43 lines
529 B
SCSS
43 lines
529 B
SCSS
.pill {
|
|
|
|
display: flex;
|
|
|
|
a,
|
|
span {
|
|
display: block;
|
|
padding: 10px;
|
|
flex-grow: 1;
|
|
text-align: center;
|
|
|
|
&:first-child {
|
|
margin-left: 0;
|
|
}
|
|
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
|
|
}
|
|
|
|
a {
|
|
background: $panel-colour;
|
|
color: $link-colour;
|
|
border: 1px solid $panel-colour;
|
|
position: relative;
|
|
|
|
&:hover {
|
|
color: $text-colour;
|
|
}
|
|
|
|
&:active,
|
|
&:focus {
|
|
z-index: 10;
|
|
}
|
|
}
|
|
|
|
span {
|
|
border: 1px solid $grey-1;
|
|
color: $text-colour;
|
|
}
|
|
}
|