Skip to content

Commit be359f7

Browse files
committed
reduce min-height
1 parent f89daf1 commit be359f7

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

site/src/pages/DeploySettingsPage/AppearanceSettingsPage/NotificationBannerSettings.tsx

+4-1
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,10 @@ export const NotificationBannerSettings: FC<
123123
<TableBody>
124124
{!isEntitled || banners.length < 1 ? (
125125
<TableCell colSpan={999}>
126-
<EmptyState message="No notification banners" />
126+
<EmptyState
127+
css={{ minHeight: 160 }}
128+
message="No notification banners"
129+
/>
127130
</TableCell>
128131
) : (
129132
banners.map((banner, i) => (

0 commit comments

Comments
 (0)