From 466b8dd201f2ab5946f6e673049adabd4cf5f47d Mon Sep 17 00:00:00 2001 From: Darya Plotnytska Date: Wed, 24 Jan 2024 15:35:58 +0100 Subject: [PATCH] console: Fix linting --- pkg/webui/console/containers/notifications/index.js | 2 -- pkg/webui/styles/utilities/general.styl | 12 ++++++++++++ 2 files changed, 12 insertions(+), 2 deletions(-) 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