Fix safety number viewer for dark theme
This commit is contained in:
parent
e346fb1f90
commit
0f9242670c
1 changed files with 7 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue