mirror of
https://github.com/inventree/inventree-website.git
synced 2025-05-01 06:56:48 +00:00
47 lines
786 B
CSS
47 lines
786 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
|
|
@layer components {
|
|
.custom-underline-blue {
|
|
@apply border-b-4 border-blue-400;
|
|
}
|
|
|
|
.footer-link {
|
|
@apply text-gray-600 hover:text-gray-800
|
|
}
|
|
|
|
.footer-categorie {
|
|
@apply font-medium text-gray-900 tracking-widest text-sm mb-3
|
|
}
|
|
|
|
.cm-hvr-btn {
|
|
@apply text-gray-700 bg-gray-100 hover:bg-gray-200 rounded
|
|
}
|
|
|
|
.cm-gray-1 {
|
|
@apply text-gray-900
|
|
}
|
|
|
|
.cm-gray-2 {
|
|
@apply text-gray-600
|
|
}
|
|
|
|
.cm-gray-3 {
|
|
@apply text-gray-500
|
|
}
|
|
|
|
.cm-container {
|
|
@apply container px-5 py-24 mx-auto
|
|
}
|
|
|
|
a.anchor {
|
|
display: block;
|
|
position: relative;
|
|
top: -72px;
|
|
visibility: hidden;
|
|
}
|
|
|
|
}
|