pointfichiers/bar/eww/notification/style.scss

46 lines
800 B
SCSS
Raw Normal View History

.notification {
padding: 6px;
margin-right: 12px;
margin-bottom: 12px;
background-color: $background;
border-radius: 20px;
2024-06-22 21:16:35 +02:00
.notification-app-icon {
min-width: 24px;
min-height: 24px;
2024-06-22 21:16:35 +02:00
background-size: cover;
background-position: center center;
}
.notification-icon {
min-width: 128px;
min-height: 128px;
background-size: cover;
background-position: center center;
border-radius: 16px;
}
.notification-text-container {
padding-top: 6px;
2024-06-22 21:16:35 +02:00
.notification-summary {
font-weight: bold;
2024-06-22 21:16:35 +02:00
}
}
2024-06-22 21:16:35 +02:00
.notification-buttons {
margin-top: 6px;
2024-06-22 21:16:35 +02:00
.notification-button {
color: $text;
font-size: 0.8em;
padding: 8px;
border-radius: 10px;
margin-right: 12px;
border: 1px solid $text;
2024-06-22 21:16:35 +02:00
}
}
}