From 503a3bb43e17de1788377d59095291cc96e82563 Mon Sep 17 00:00:00 2001 From: "Ismail H. Ayaz" Date: Mon, 20 May 2024 15:31:58 +0300 Subject: [PATCH] style: predefine widget background --- src/ui/components/PTextField/PTextField.css | 4 ++-- src/ui/styles/main.css | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/ui/components/PTextField/PTextField.css b/src/ui/components/PTextField/PTextField.css index fa64529..3666239 100644 --- a/src/ui/components/PTextField/PTextField.css +++ b/src/ui/components/PTextField/PTextField.css @@ -1,9 +1,9 @@ .widget { .input { - @apply flex flex-col w-full text-lg relative flex-wrap bg-white mt-3; + @apply flex flex-col w-full text-lg relative flex-wrap mt-3; &--wrap { - @apply flex ring-1 ring-gray-300 rounded-sm border-none w-full min-w-0; + @apply flex ring-1 ring-gray-300 rounded-sm border-none w-full min-w-0 bg-white; --input-ring-color: var(--pa-ring-color); } diff --git a/src/ui/styles/main.css b/src/ui/styles/main.css index 58ba8c5..67d9a06 100644 --- a/src/ui/styles/main.css +++ b/src/ui/styles/main.css @@ -134,7 +134,7 @@ } } &-main { - @apply relative pt-6 px-6 pb-8; + @apply relative pt-6 px-6 pb-8 bg-white; box-flex: 1; flex-grow: 1; overflow: hidden;