style(ags): make it easier on my eyes

This commit is contained in:
matt1432 2023-09-11 14:18:22 -04:00
parent 49f0ea7750
commit 2bd7b36392
3 changed files with 111 additions and 110 deletions

View file

@ -21,5 +21,5 @@ export default {
Closer,
NotificationCenter,
NotificationsPopupList,
]
}
],
};

View file

@ -48,7 +48,7 @@ const Placeholder = () => Box({
vexpand: true,
hexpand: true,
children: [
Icon('notifications-disabled-symbolic'),
Icon('notification-disabled-symbolic'),
Label('Your inbox is empty'),
],
connections: [[Notifications, box => {
@ -58,6 +58,7 @@ const Placeholder = () => Box({
export const NotificationCenter = Window({
name: 'notification-center',
popup: true,
layer: 'overlay',
anchor: 'top right',
className: 'dashboard',

View file

@ -41,7 +41,7 @@ const Popups = () => Box({
],
});
const PopupList = ({ transition = 'slide_down' } = {}) => Box({
const PopupList = ({ transition = 'slide_right' } = {}) => Box({
className: 'notifications-popup-list',
style: 'padding: 1px',
children: [
@ -54,6 +54,6 @@ const PopupList = ({ transition = 'slide_down' } = {}) => Box({
export const NotificationsPopupList = Window({
name: `notifications`,
anchor: 'top',
anchor: 'top left',
child: PopupList(),
});