diff --git a/pkg/webui/console/containers/notifications/index.js b/pkg/webui/console/containers/notifications/index.js index 9a1c465f191..d57f9b5ae39 100644 --- a/pkg/webui/console/containers/notifications/index.js +++ b/pkg/webui/console/containers/notifications/index.js @@ -34,7 +34,6 @@ import NotificationList from './notification-list' import NotificationContent from './notification-content' import style from './notifications.styl' -import { isSafariUserAgent } from '@ttn-lw/lib/navigator' const BATCH_SIZE = 50 @@ -118,7 +117,6 @@ const Notifications = () => { setItems(updatedItems) // Set the first notification as selected if none is currently selected. - console.log('loadItems', isSmallScreen) if (!selectedNotification && !isSmallScreen) { setSelectedNotification(updatedItems[0]) } diff --git a/pkg/webui/styles/utilities/general.styl b/pkg/webui/styles/utilities/general.styl index 030d836d5aa..22df4377d41 100644 --- a/pkg/webui/styles/utilities/general.styl +++ b/pkg/webui/styles/utilities/general.styl @@ -388,5 +388,17 @@ .{$name}\\:d-inline-flex display: inline-flex !important + .br-xs + border-radius: $br.xs + + .br-s + border-radius: $br.s + + .br-m + border-radius: $br.m + .br-l border-radius: $br.l + + .br-xl + border-radius: $br.xl