107 lines
1.7 KiB
SCSS
107 lines
1.7 KiB
SCSS
@import "../colors";
|
|
.notification-card-container {
|
|
margin-top: 3.5rem;
|
|
}
|
|
|
|
.notification-card {
|
|
color: $text;
|
|
background: $mantle;
|
|
margin-right: 0.4rem;
|
|
border: 0.15rem solid $surface0;
|
|
min-width: 28rem;
|
|
min-height: 6rem;
|
|
border-radius: 0.4rem;
|
|
|
|
&:not(:first-child) {
|
|
margin-top: 1rem;
|
|
}
|
|
}
|
|
|
|
.notification-card-container {
|
|
padding: 1px;
|
|
}
|
|
|
|
|
|
.notification-card-image-container {
|
|
margin: 0.75rem 0.75rem;
|
|
border-radius: 0.4rem;
|
|
}
|
|
.notification-card-image {
|
|
border-radius: 0.4rem;
|
|
min-width: 3rem;
|
|
min-height: 3rem;
|
|
padding: 1rem 1rem;
|
|
background-size: contain;
|
|
background-repeat: no-repeat;
|
|
background-position: center;
|
|
}
|
|
|
|
.notification-card-content {
|
|
min-width: 3.5rem;
|
|
min-height: 3.5rem;
|
|
padding: 0.6rem 0.6rem;
|
|
margin-right: 1rem;
|
|
}
|
|
|
|
.notification-card-content.noimg {
|
|
margin-left: 1.5rem;
|
|
margin-top: .2rem;
|
|
}
|
|
|
|
.notification-card-appname-label {
|
|
font-size: 0.9rem;
|
|
color: $pink;
|
|
}
|
|
|
|
.notification-card-header-label {
|
|
font-size: 1.15rem;
|
|
margin-bottom: 0.5rem;
|
|
color: $lavender;
|
|
}
|
|
|
|
.notification-card-body-label {
|
|
font-size: 1rem;
|
|
font-weight: 600;
|
|
}
|
|
|
|
.notification-card-actions {
|
|
margin-top: 1rem;
|
|
margin-bottom: 0.5rem;
|
|
}
|
|
|
|
.notification-action-buttons {
|
|
color: $lavender;
|
|
background: $surface0;
|
|
min-width: 6rem;
|
|
min-height: 2rem;
|
|
border-radius: 0.2rem;
|
|
|
|
&:not(:last-child) {
|
|
margin-right: 2rem;
|
|
}
|
|
|
|
&:hover {
|
|
background: $pink;
|
|
}
|
|
}
|
|
|
|
.notification-icon {
|
|
margin-bottom: 0.6rem;
|
|
font-size: 1.5rem;
|
|
}
|
|
|
|
.close-notification-button {
|
|
background: $red;
|
|
color: $crust;
|
|
min-width: 2.5rem;
|
|
border-radius: 0rem 0.35rem 0.35rem 0rem;
|
|
|
|
label {
|
|
font-size: 1.7rem;
|
|
}
|
|
|
|
&:hover {
|
|
background: $maroon;
|
|
}
|
|
}
|