Updated notifications to handle actions and added a blue dbus messenger to listen for bluetooth actions.

This commit is contained in:
Jas Singh
2024-06-19 01:53:27 -07:00
parent ca488f4fb6
commit dd13346e1b
7 changed files with 265 additions and 53 deletions

View File

@@ -26,17 +26,18 @@
.notification-card-image-container {
margin: 0.5rem 0.75rem;
margin: 0.75rem 0.75rem;
min-width: 4rem;
min-height: 4rem;
border-radius: 0.4rem;
}
.notification-card-image {
border: 0.2rem solid $base;
border-radius: 0.4rem;
min-width: 3rem;
min-height: 3rem;
padding: 1rem 1rem;
margin: 0.5rem 0rem;
// margin-top: 1rem;
background-size: contain;
background-repeat: no-repeat;
}
@@ -55,9 +56,28 @@
.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: 1rem 0rem;
}
.notification-action-buttons {
color: $mantle;
background: $lavender;
margin-right: 2rem;
min-width: 5rem;
min-height: 2rem;
border-radius: 0.4rem;
&:hover {
background: $pink;
}
}