1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-11-23 02:10:12 +01:00
metamask-extension/ui/components/app/home-notification/index.scss
Nidhi Kumari 6535e34943
Replaced all fa-icon-circle with INFO icon (#17539)
* replace all fa-icon-circle with INFO icon

* updated classnames

* updated classnames

* updated snapshots

* updated colors

* resolved errors

* fixed relative import

* fixed lint errors

* added story for alerts tab

* update snapshot

* updated info-circle

* updated enum for iconName

* removed classnames

* updated iconName in settings

* fixed lint errors and snapshots
2023-05-09 23:04:58 +05:30

92 lines
1.5 KiB
SCSS

.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;
}
&__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;
}
}