diff options
Diffstat (limited to 'src/client/widgets')
| -rw-r--r-- | src/client/widgets/notifications.vue | 7 | ||||
| -rw-r--r-- | src/client/widgets/timeline.vue | 8 |
2 files changed, 2 insertions, 13 deletions
diff --git a/src/client/widgets/notifications.vue b/src/client/widgets/notifications.vue index 2a718a6666..9c1bddb2ee 100644 --- a/src/client/widgets/notifications.vue +++ b/src/client/widgets/notifications.vue @@ -3,7 +3,7 @@ <mk-container :show-header="!props.compact" class="container"> <template #header><fa :icon="faBell"/>{{ $t('notifications') }}</template> - <div class="tl"> + <div> <x-notifications/> </div> </mk-container> @@ -81,10 +81,5 @@ export default define({ flex-grow: 1; } } - - .tl { - background: var(--bg); - padding: 8px; - } } </style> diff --git a/src/client/widgets/timeline.vue b/src/client/widgets/timeline.vue index ab5664a4d8..55f78f985f 100644 --- a/src/client/widgets/timeline.vue +++ b/src/client/widgets/timeline.vue @@ -14,7 +14,7 @@ </button> </template> - <div class="tl"> + <div> <x-timeline :key="props.src === 'list' ? `list:${props.list.id}` : props.src === 'antenna' ? `antenna:${props.antenna.id}` : props.src" :src="props.src" :list="props.list" :antenna="props.antenna"/> </div> </mk-container> @@ -148,11 +148,5 @@ export default define({ flex-grow: 1; } } - - .tl { - padding: 8px; - background: var(--bg); - box-sizing: border-box; - } } </style> |