A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/components/app/modals/qr-scanner/index.scss

88 lines
1.3 KiB

6 years ago
.qr-scanner {
width: 100%;
height: 100%;
background-color: var(--color-background-default);
6 years ago
display: flex;
flex-flow: column;
border-radius: 8px;
&__title {
@include H3;
6 years ago
font-weight: 500;
padding: 16px 0;
text-align: center;
}
&__content {
padding-left: 20px;
padding-right: 20px;
&__video-wrapper {
overflow: hidden;
width: 100%;
height: 275px;
display: flex;
align-items: center;
justify-content: center;
video {
transform: scaleX(-1);
width: auto;
height: 275px;
}
}
}
&__status {
@include H6;
6 years ago
text-align: center;
padding: 15px;
}
6 years ago
&__image {
@include H3;
6 years ago
font-weight: 500;
padding: 16px 0 0;
text-align: center;
}
&__error {
@include Paragraph;
6 years ago
text-align: center;
padding: 15px;
}
&__footer {
padding: 20px;
flex-direction: row;
display: flex;
button {
margin-right: 15px;
}
button:last-of-type {
margin-right: 0;
background-color: var(--color-primary-default);
6 years ago
border: none;
color: var(--color-primary-inverse);
6 years ago
}
}
&__close::after {
content: '\00D7';
font-size: 35px;
color: var(--color-icon-default);
6 years ago
position: absolute;
top: 4px;
right: 20px;
cursor: pointer;
font-weight: 300;
}
6 years ago
}