feat(ags popupwindows): move them a bit higher up
This commit is contained in:
parent
cc7b499627
commit
b628a7d618
3 changed files with 3 additions and 3 deletions
|
@ -75,7 +75,7 @@ const CalendarWidget = () => Box({
|
||||||
|
|
||||||
export default () => PopupWindow({
|
export default () => PopupWindow({
|
||||||
anchor: ['top', 'right'],
|
anchor: ['top', 'right'],
|
||||||
margin: [8, 182, 0, 0],
|
margin: [6, 182, 0, 0],
|
||||||
name: 'calendar',
|
name: 'calendar',
|
||||||
child: Box({
|
child: Box({
|
||||||
className: 'date',
|
className: 'date',
|
||||||
|
|
|
@ -148,6 +148,6 @@ const NotificationCenterWidget = () => Box({
|
||||||
export default () => PopupWindow({
|
export default () => PopupWindow({
|
||||||
name: 'notification-center',
|
name: 'notification-center',
|
||||||
anchor: ['top', 'right'],
|
anchor: ['top', 'right'],
|
||||||
margin: [8, 60, 0, 0],
|
margin: [6, 60, 0, 0],
|
||||||
child: NotificationCenterWidget(),
|
child: NotificationCenterWidget(),
|
||||||
});
|
});
|
||||||
|
|
|
@ -45,6 +45,6 @@ const QuickSettingsWidget = () => Box({
|
||||||
export default () => PopupWindow({
|
export default () => PopupWindow({
|
||||||
name: 'quick-settings',
|
name: 'quick-settings',
|
||||||
anchor: ['top', 'right'],
|
anchor: ['top', 'right'],
|
||||||
margin: [8, 5, 0],
|
margin: [6, 5, 0],
|
||||||
child: QuickSettingsWidget(),
|
child: QuickSettingsWidget(),
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue