147 lines
3.0 KiB
JavaScript
147 lines
3.0 KiB
JavaScript
/*
|
|
* Copyright © 2016-2024 The Thingsboard Authors
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
important: ".tb-default",
|
|
content: [
|
|
"./src/**/*.{html,ts}",
|
|
],
|
|
theme: {
|
|
screens: {
|
|
'xs': {
|
|
max: '599px'
|
|
},
|
|
'sm': {
|
|
min: '600px',
|
|
max: '959px'
|
|
},
|
|
'md': {
|
|
min: '960px',
|
|
max: '1279px'
|
|
},
|
|
'md-lg': {
|
|
min: '960px',
|
|
max: '1819px'
|
|
},
|
|
'lg': {
|
|
min: '1280px',
|
|
max: '1919px'
|
|
},
|
|
'xl': {
|
|
min: '1920px',
|
|
max: '5000px'
|
|
},
|
|
'lt-sm': {
|
|
max: '599px'
|
|
},
|
|
'lt-md': {
|
|
max: '959px'
|
|
},
|
|
'lt-lg': {
|
|
max: '1279px'
|
|
},
|
|
'lt-xl': {
|
|
max: '1919px'
|
|
},
|
|
'gt-xs': {
|
|
min: '600px'
|
|
},
|
|
'gt-sm': {
|
|
min: '960px'
|
|
},
|
|
'gt-md': {
|
|
min: '1280px'
|
|
},
|
|
'gt-xmd': {
|
|
min: '1600px'
|
|
},
|
|
'gt-lg': {
|
|
min: '1920px'
|
|
},
|
|
'gt-xl': {
|
|
min: '1920px'
|
|
}
|
|
},
|
|
extend: {
|
|
flexBasis: {
|
|
'25': '6.25rem',
|
|
'37.5': '9.375rem'
|
|
},
|
|
flex: {
|
|
full: '1 1 100%'
|
|
},
|
|
gap: {
|
|
'0.75': '0.1875rem'
|
|
},
|
|
minWidth: {
|
|
'25': '6.25rem',
|
|
'37.5': '9.375rem'
|
|
},
|
|
maxWidth: {
|
|
'5%': '5%',
|
|
'8%': '8%',
|
|
'10%': '10%',
|
|
'15%': '15%',
|
|
'17%': '17%',
|
|
'20%': '20%',
|
|
'23%': '23%',
|
|
'25%': '25%',
|
|
'26%': '26%',
|
|
'30%': '30%',
|
|
'33%': '33%',
|
|
'35%': '35%',
|
|
'37%': '37%',
|
|
'40%': '40%',
|
|
'45%': '45%',
|
|
'50%': '50%',
|
|
'55%': '55%',
|
|
'60%': '60%',
|
|
'65%': '65%',
|
|
'70%': '70%',
|
|
'75%': '75%',
|
|
'80%': '80%',
|
|
'85%': '85%',
|
|
'90%': '90%',
|
|
'92%': '92%',
|
|
'95%': '95%',
|
|
'1/2': '50%',
|
|
'1/3': '33.333333%',
|
|
'2/3': '66.666667%',
|
|
'1/6': '16.666667%',
|
|
'2/6': '33.333333%',
|
|
'4/6': '66.666667%',
|
|
'5/6': '83.333333%',
|
|
'1/12': '8.333333%',
|
|
'2/12': '16.666667%',
|
|
'4/12': '33.333333%',
|
|
'5/12': '41.666667%',
|
|
'7/12': '58.333333%',
|
|
'8/12': '66.666667%',
|
|
'10/12': '83.333333%',
|
|
'11/12': '91.666667%',
|
|
'25': '6.25rem',
|
|
'37.5': '9.375rem'
|
|
}
|
|
},
|
|
},
|
|
safelist: [],
|
|
corePlugins: {
|
|
preflight: false
|
|
},
|
|
plugins: [],
|
|
}
|
|
|