When editing text on long documents in a Divi module, the toolbar may disappear off the screen. This CSS snippet makes this toolbar sticky.

/* Divi text module sticky toolbar */
.mce-top-part {
	position: sticky !important;
	top: -60px;
}
Code language: CSS (css)