1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/resources/sass/app.scss
Benjamin Beganović 2b39c1a5d7 Replace blue color with $primary_color:
- Change ClientPortal helper to return 'bg-primary-darken' instead of 'active-page'
    - Buttons & input fields don't have SASS color now
    - bg-blue-600/900 replaced with primary/primary-darken
    - Production build of assets
2020-09-30 13:31:15 +02:00

38 lines
1000 B
SCSS
Vendored

/* purgecss start ignore */
@tailwind base;
// ..
@tailwind components;
@import 'components/buttons';
@import 'components/validation';
@import 'components/inputs';
@import 'components/alerts';
@import 'components/badge';
@import 'components/datatables';
.pagination {
@apply flex items-center #{!important};
.page-link {
@apply -mt-px border-t-2 border-transparent pt-4 px-4 inline-flex items-center text-sm leading-5 font-medium text-gray-500 transition ease-in-out duration-150 cursor-pointer #{!important};
}
.page-link:hover {
@apply text-gray-700 border-gray-300 #{!important};
}
.page-link:focus {
@apply outline-none text-gray-700 border-gray-400;
}
.active > span {
@apply text-blue-600 border-blue-600 #{!important};
}
// hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-400 transition ease-in-out duration-150
}
/* purgecss end ignore */
@tailwind utilities;