소스 검색

Add styles for input tags

Added input tags to use the same styles as the textarea tag, except for
the element's height.
ApisNecros 1 년 전
부모
커밋
5ff148f57c
1개의 변경된 파일4개의 추가작업 그리고 1개의 파일을 삭제
  1. 4 1
      static/css/base.css

+ 4 - 1
static/css/base.css

@@ -42,8 +42,11 @@
         @apply text-lg;
     }
 
+    textarea, input {
+        @apply w-full p-2 bg-white border border-gray-400 rounded;
+    }
     textarea {
-        @apply w-full h-24 p-2 bg-white border border-gray-400 rounded;
+        @apply h-24;
     }
 
     ol {