Skip to content
Snippets Groups Projects
Commit c29a7336 authored by Tadeusz Miesiąc's avatar Tadeusz Miesiąc
Browse files

Merge branch 'development' of https://gitlab.lcsb.uni.lu/minerva/frontend into development

parents 67b8e99c 3929aba8
No related branches found
No related tags found
1 merge request!223reset the pin numbers before search results are fetch (so the results will be...
Pipeline #78490 passed
@import 'contrib/normalize.css';
@import 'tailwindcss/base';
@import 'tailwindcss/components';
@import 'tailwindcss/utilities';
*,
::after,
::before {
box-sizing: border-box;
}
html {
font-size: 16px;
}
body {
@apply bg-white;
font-size: 100%;
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
}
a {
@apply no-underline;
}
ul {
list-style: none;
margin: 0 0 0 0;
padding: 0;
}
/* This is needed to reverse the CSS normalisation Tailwind applies. Ideally we can remove this
pretty soon though.
*/
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
display: inline;
}
import type { Config } from 'tailwindcss'
import type { Config } from 'tailwindcss';
const config: Config = {
content: [
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
],
content: ['./src/**/*.ts', './src/**/*.tsx'],
theme: {
extend: {
backgroundImage: {
'gradient-radial': 'radial-gradient(var(--tw-gradient-stops))',
'gradient-conic':
'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
'gradient-conic': 'conic-gradient(from 180deg at 50% 50%, var(--tw-gradient-stops))',
},
},
},
plugins: [],
}
export default config
};
export default config;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment