/*
 * Default Trix editor styles. See Action Text overwrites below.
*/

/* trix-editor */

.trix-editor{
	overflow-y: auto !important;
}

/* Trix Editor and Content shared elements */
/* With TailwindCSS, we need to add back some of the element properties */
/* because Tailwind remove the base element */

.trix-editor h1{
	font-size: 2.1em;
	font-weight: 500;
	font-style: italic;
	
} 

.trix-content h1 {
	font-size: 2.1em;
	font-weight: 500;
	font-style: italic;
}

.trix-editor a, .trix-content a {
	text-decoration-line: underline;
	text-underline-position: under;
}

.trix-editor a:hover, .trix-content a:hover {
	text-decoration-line: underline;
	text-underline-position: under;
	text-decoration-color: blue;
	color: blue;
}

.trix-editor ul, .trix-content ul {
    list-style-type: disc;
    padding-left: 1.5rem;
}
	
.trix-editor ol, .trix-content ol {
    list-style-type: decimal;
    padding-left: 1.5rem;
}

.trix-editor strong{
	font-weight: 700;
	font-size: 1.1em;	
}

.trix-content strong{
	font-weight: 700;
	font-size: 1.1em;
}

.trix-editor blockquote, .trix-content blockquote{
	font-weight: 700;
	font-size: 1.35em;
}
