From c0ab333fbe9c7655cd635a6aec6c84b1b120591f Mon Sep 17 00:00:00 2001 From: Smol-An Date: Mon, 24 Jun 2024 01:42:24 +0300 Subject: [PATCH] [#1626] fix comment field resizing --- resources/sass/_custom.scss | 2 +- resources/views/components/comment/_form.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/sass/_custom.scss b/resources/sass/_custom.scss index cb4b427f..516ac211 100644 --- a/resources/sass/_custom.scss +++ b/resources/sass/_custom.scss @@ -43,6 +43,6 @@ } } -.x-min-h-100 { +.x-min-h-100px { min-height: 100px !important; } diff --git a/resources/views/components/comment/_form.blade.php b/resources/views/components/comment/_form.blade.php index 25c29363..1bc9637a 100644 --- a/resources/views/components/comment/_form.blade.php +++ b/resources/views/components/comment/_form.blade.php @@ -9,7 +9,7 @@ {{ html()->hidden('commentable_type')->value(get_class($model)) }} {{ html()->hidden('commentable_id')->value($model->id) }}
- {{ html()->textarea('content')->class('form-control x-min-h-100')->required() }} + {{ html()->textarea('content')->class('form-control x-min-h-100px')->required() }}