Fix safety number viewer for dark theme

This commit is contained in:
Josh Perez 2021-10-07 12:14:09 -04:00 committed by GitHub
parent e346fb1f90
commit 0f9242670c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -54,13 +54,19 @@
}
&__number {
background: $color-gray-02;
border-radius: 8px;
font-family: monospace;
height: 100px;
margin: 24px auto;
padding: 24px;
width: 240px;
@include light-theme {
background-color: $color-gray-02;
}
@include dark-theme {
background-color: $color-gray-90;
}
}
&__verification-status {