Support

Account

Home Forums Gutenberg Inserter Help Panel Reply To: Inserter Help Panel

  • It’s just a CSS trick 🙂
    I call some CSS for the admin and then:

    #editor {
    	
    	.block-editor-inserter__results {
    		display: flex;
    		flex-direction: column;
    		
    		.components-panel__body:last-child {
    			order: -1;
    			border-bottom: 0;
    		}
    	}
    }
    

    But I’m aware this will only work if my group is the last one 🙂