update to multi-style enabled merged

This commit is contained in:
2023-01-27 19:30:11 +02:00
parent 35c4719e44
commit be0c9b931b
61 changed files with 98 additions and 72 deletions

View File

@ -11,7 +11,6 @@
* It is generally better to create a new file per style scope.
*
*= require_self
*= require merged/tailwind_styles
*/
#thredded--container{
max-width: 60rem;

View File

@ -1,14 +1,2 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
/*
@layer components {
.btn-primary {
@apply py-2 px-4 bg-blue-200;
}
}
@import 'actiontext.css';
*/
@import "tailwind_base";
@import "merged_tailwind_styles";

View File

@ -0,0 +1,21 @@
.prose {
max-width: 100%;
color: inherit;
--tw-prose-bullets: #6b7280;
--tw-prose-headings: inherit;
}
@layer components {
.button {
@apply inline-block rounded-lg px-3 py-2 text-base font-medium border border-gray-500 hover:border-black;
}
.change {
@apply bg-cyan-200;
}
.remove {
@apply bg-red-200;
}
.action {
@apply bg-green-200;
}
}

View File

@ -0,0 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;