mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
75 lines
1.1 KiB
SCSS
75 lines
1.1 KiB
SCSS
.home-notification-wrapper--show-all,
|
|
.home-notification-wrapper--show-first {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 472px;
|
|
position: absolute;
|
|
bottom: 0;
|
|
right: 0;
|
|
margin: 8px;
|
|
|
|
@include screen-sm-max {
|
|
width: 340px;
|
|
}
|
|
|
|
.home-notification-wrapper__i-container {
|
|
position: relative;
|
|
width: 100%;
|
|
height: 100%;
|
|
|
|
.fa-sm {
|
|
display: initial;
|
|
position: absolute;
|
|
bottom: 14px;
|
|
left: 16px;
|
|
color: var(--color-icon-muted);
|
|
cursor: pointer;
|
|
visibility: visible;
|
|
|
|
&:hover {
|
|
@include H4;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.home-notification-wrapper--show-all {
|
|
justify-content: flex-end;
|
|
margin-bottom: 0;
|
|
|
|
.home-notification-wrapper__i-container {
|
|
height: 0;
|
|
}
|
|
|
|
> div {
|
|
position: relative;
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.fa-sm {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
|
|
.home-notification-wrapper--show-first {
|
|
> div {
|
|
position: fixed;
|
|
bottom: 8px;
|
|
right: 8px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
> div:first-of-type {
|
|
visibility: visible;
|
|
}
|
|
|
|
.fa-sm {
|
|
position: relative;
|
|
display: initial;
|
|
}
|
|
}
|
|
|
|
.flipped {
|
|
transform: rotate(180deg);
|
|
}
|