From 198958cf9f00f39214e6eef6caf3a848a838a27d Mon Sep 17 00:00:00 2001 From: dskvr Date: Thu, 12 Jan 2023 12:27:42 +0100 Subject: [PATCH] decrease text for <=lg --- src/components/relays/blocks/RelaysResultTable.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/relays/blocks/RelaysResultTable.vue b/src/components/relays/blocks/RelaysResultTable.vue index 8b694de..8d957a3 100644 --- a/src/components/relays/blocks/RelaysResultTable.vue +++ b/src/components/relays/blocks/RelaysResultTable.vue @@ -277,8 +277,8 @@ 'bg-slate-100': index % 2, 'bg-red-50 hover:bg-red-100': this.store.relays.isFavorite(relay), 'bg-gray-50 hover:bg-slate-200': !this.store.relays.isFavorite(relay), - 'lg:text-2xl lg:h-16': this.store.prefs.getTheme === 'spacious', - 'lg:text-xl lg:h-9': this.store.prefs.getTheme === 'comfortable', + 'xl:text-2xl xl:h-16': this.store.prefs.getTheme === 'spacious', + 'xl:text-xl xl:h-9': this.store.prefs.getTheme === 'comfortable', // '': this.store.prefs.getTheme === 'compact', } }