more styling

This commit is contained in:
Thomas Ruoff
2021-02-28 23:28:05 +01:00
parent fcb453b243
commit 0aaccf6966
7 changed files with 53 additions and 34 deletions

View File

@@ -2,6 +2,26 @@
@tailwind components;
@tailwind utilities;
.pb-label {
@apply block text-sm font-medium text-gray-700;
}
.pb-textarea {
@apply shadow-sm focus:ring-indigo-500 focus:border-indigo-500 mt-1 block w-full sm:text-sm border-gray-300 rounded-md;
}
.pb-select {
@apply mt-1 block w-full py-2 px-3 border border-gray-300 bg-white rounded-md shadow-sm focus:outline-none focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm;
}
.pb-input_wrapper {
@apply mt-1 flex rounded-md shadow-sm;
}
.pb-input {
@apply focus:ring-indigo-500 focus:border-indigo-500 flex-1 block w-full rounded-md sm:text-sm border-gray-300;
}
.Collapsible {
background-color: #ddd;
border-radius: 2px;
@@ -31,4 +51,5 @@
background-color: #fff;
padding-top: 12px;
padding-left: 12px;
padding-right: 2px;
}