mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-16 20:49:00 -04:00
Means you can see, for example emails that have failed. Means adding: - logic to generate links which can have a type parameter, a status parameter, or both - a ‘pill’ UI component for seeing which filters you currently have applied - some logic to change the page title based on which filters you have applied
41 lines
526 B
SCSS
41 lines
526 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;
|
|
}
|
|
} |