feat(ags popupwindows): move them a bit higher up

This commit is contained in:
matt1432 2023-10-22 14:15:12 -04:00
parent cc7b499627
commit b628a7d618
3 changed files with 3 additions and 3 deletions

View file

@ -75,7 +75,7 @@ const CalendarWidget = () => Box({
export default () => PopupWindow({
anchor: ['top', 'right'],
margin: [8, 182, 0, 0],
margin: [6, 182, 0, 0],
name: 'calendar',
child: Box({
className: 'date',

View file

@ -148,6 +148,6 @@ const NotificationCenterWidget = () => Box({
export default () => PopupWindow({
name: 'notification-center',
anchor: ['top', 'right'],
margin: [8, 60, 0, 0],
margin: [6, 60, 0, 0],
child: NotificationCenterWidget(),
});

View file

@ -45,6 +45,6 @@ const QuickSettingsWidget = () => Box({
export default () => PopupWindow({
name: 'quick-settings',
anchor: ['top', 'right'],
margin: [8, 5, 0],
margin: [6, 5, 0],
child: QuickSettingsWidget(),
});