#1375 - Correct colors on confirmation page

This commit is contained in:
Harry Twyford 2019-08-29 15:22:58 -04:00 committed by Jonathan Kingston
parent 2badd22f41
commit 54659f5c77

View file

@ -47,7 +47,7 @@ html {
}
#redirect-url {
background: #efefef;
background: #efedf0; /* Grey 20 */
border-radius: 2px;
line-height: 1.5;
padding-block-end: 0.5rem;
@ -56,6 +56,14 @@ html {
padding-inline-start: 0.5rem;
}
/* stylelint-disable media-feature-name-no-unknown */
@media (prefers-color-scheme: dark) {
#redirect-url {
background: #38383d; /* Grey 70 */
}
}
/* stylelint-enable */
#redirect-url img {
block-size: 16px;
inline-size: 16px;