Convert inline style css to classes.

This commit is contained in:
FireMasterK
2022-01-12 11:59:50 +00:00
parent fb3ac51cd8
commit 05d7853ef0
6 changed files with 26 additions and 18 deletions

View File

@@ -134,7 +134,16 @@ b {
.input,
.select,
.btn {
@apply w-auto h-8 text-gray-600 bg-gray-300;
@apply w-auto text-gray-600 bg-gray-300;
}
.input,
.select {
@apply h-8;
}
.btn {
@apply h-full;
}
.checkbox {