From 8f5e083055ad71b17edc56df0e7e8ff18b21305b Mon Sep 17 00:00:00 2001 From: Alexander Nikushkin Date: Wed, 29 May 2024 13:15:48 +0500 Subject: [PATCH 1/2] chore: fixed style close button --- resources/css/components/buttons.css | 2 +- resources/css/minimalistic.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/css/components/buttons.css b/resources/css/components/buttons.css index 04857a3cc..3a74c0e15 100644 --- a/resources/css/components/buttons.css +++ b/resources/css/components/buttons.css @@ -35,7 +35,7 @@ /* Button variants */ .btn-close { - @apply h-10 w-10 p-0; + @apply h-10 w-10 min-h-[auto] p-0; > svg { @apply h-5 w-5; } diff --git a/resources/css/minimalistic.css b/resources/css/minimalistic.css index 49f52a999..fa4c80afd 100644 --- a/resources/css/minimalistic.css +++ b/resources/css/minimalistic.css @@ -435,7 +435,7 @@ body.theme-minimalistic { } .btn-close { - @apply h-7 w-7; + @apply h-7 w-7 min-h-[auto]; } /* Dropdown */ From 09b040e73905819e0f117406e7d6eb6f633feb4e Mon Sep 17 00:00:00 2001 From: DissNik Date: Wed, 29 May 2024 08:16:29 +0000 Subject: [PATCH 2/2] Apply prettier changes --- resources/css/components/buttons.css | 2 +- resources/css/minimalistic.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/css/components/buttons.css b/resources/css/components/buttons.css index 3a74c0e15..9bfdb457e 100644 --- a/resources/css/components/buttons.css +++ b/resources/css/components/buttons.css @@ -35,7 +35,7 @@ /* Button variants */ .btn-close { - @apply h-10 w-10 min-h-[auto] p-0; + @apply h-10 min-h-[auto] w-10 p-0; > svg { @apply h-5 w-5; } diff --git a/resources/css/minimalistic.css b/resources/css/minimalistic.css index fa4c80afd..a56d28b24 100644 --- a/resources/css/minimalistic.css +++ b/resources/css/minimalistic.css @@ -435,7 +435,7 @@ body.theme-minimalistic { } .btn-close { - @apply h-7 w-7 min-h-[auto]; + @apply h-7 min-h-[auto] w-7; } /* Dropdown */