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/home-notification/index.scss

95 lines
1.6 KiB

.home-notification {
display: flex;
flex-flow: column;
justify-content: space-between;
background: var(--color-background-default);
box-shadow: var(--shadow-size-md) var(--color-shadow-default);
border: 1px solid var(--color-border-muted);
border-radius: 8px;
min-height: 116px;
padding: 16px;
@include screen-sm-min {
min-width: 472px;
}
&__content-container {
display: flex;
}
&__content {
display: flex;
align-items: center;
justify-content: space-between;
}
&__text {
@include H7;
color: var(--color-text-default);
}
&__text-link {
@include H7;
color: var(--color-primary-default);
cursor: pointer;
}
.fa-info-circle {
color: var(--color-icon-default);
}
&__checkbox-wrapper {
display: flex;
flex-direction: row;
align-items: center;
@include screen-sm-max {
width: 160px;
}
}
&__checkbox {
height: 13px;
width: 13px;
font-size: 16px;
cursor: pointer;
}
&__checkbox-label {
@include H7;
color: var(--color-text-default);
margin-left: 8px;
margin-top: 1px;
user-select: none;
-moz-user-select: none;
-webkit-user-select: none;
cursor: pointer;
}
&__ignore-button.button {
width: auto;
padding: 8px 16px;
}
&__accept-button.button {
width: auto;
padding: 8px 16px;
}
&__buttons {
display: flex;
width: 100%;
padding-top: 8px;
align-items: center;
justify-content: space-between;
flex-direction: row-reverse;
}
&__tooltip-wrapper {
display: flex;
margin-left: 8px;
}
}