1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-10-23 03:36:18 +02:00
metamask-extension/ui/components/app/multiple-notifications/index.scss

77 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;
@media screen and (max-width: 576px) {
width: 340px;
}
.home-notification-wrapper__i-container {
position: relative;
width: 100%;
height: 100%;
.fa-sm {
display: initial;
position: absolute;
bottom: 14px;
left: 16px;
color: white;
cursor: pointer;
visibility: visible;
&:hover {
@include H4;
color: #b0d7f2;
}
}
}
}
.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: 10px;
right: 10px;
visibility: hidden;
}
> div:first-of-type {
visibility: visible;
}
.fa-sm {
position: relative;
display: initial;
}
}
.flipped {
transform: rotate(180deg);
}