some cahnges

This commit is contained in:
Dmitry Borisenko
2021-12-28 22:09:44 +01:00
parent ac75b95232
commit fd5d18e20b
2 changed files with 23 additions and 0 deletions

View File

@@ -840,6 +840,12 @@
.table-sub-input { .table-sub-input {
@apply content-center h-6 bg-gray-50 focus:bg-white appearance-none border-2 border-gray-100 text-gray-700 leading-tight focus:outline-none text-center focus:border-indigo-500 rounded-sm; @apply content-center h-6 bg-gray-50 focus:bg-white appearance-none border-2 border-gray-100 text-gray-700 leading-tight focus:outline-none text-center focus:border-indigo-500 rounded-sm;
} }
.table-text-padding {
@apply px-2 py-0 sm:py-0 md:py-0 lg:py-1 xl:py-2 2xl:py-2;
}
.table-text-sizing {
@apply text-xxs sm:text-xxs md:text-base lg:text-base xl:text-base 2xl:text-base;
}
/*====================================================buttons=====================================================*/ /*====================================================buttons=====================================================*/
.long-button { .long-button {
@apply flex justify-center break-words content-center bg-blue-100 hover:bg-blue-200 text-gray-500 font-bold h-8 w-full mt-4 border border-gray-300 rounded; @apply flex justify-center break-words content-center bg-blue-100 hover:bg-blue-200 text-gray-500 font-bold h-8 w-full mt-4 border border-gray-300 rounded;

View File

@@ -21,4 +21,21 @@ module.exports = {
extend: {}, extend: {},
}, },
plugins: [], plugins: [],
theme: {
fontSize: {
'xxs': '.5rem',
'xs': '.75rem',
'sm': '.875rem',
'tiny': '.875rem',
'base': '1rem',
'lg': '1.125rem',
'xl': '1.25rem',
'2xl': '1.5rem',
'3xl': '1.875rem',
'4xl': '2.25rem',
'5xl': '3rem',
'6xl': '4rem',
'7xl': '5rem',
}
}
} }