Skip to content

Excalidraw Minimal UI by fallenmax

Details

Authorfallenmax

LicenseNo License

Categoryexcalidraw.com

Created

Updated

Size1.1 kB

Statistics

Learn how we calculate statistics in the FAQ.

Failed to fetch stats.

Description

Hide/minimize UI on Excalidraw

Notes

Userstyle doesn't have notes.

Source code

/* ==UserStyle==
@name           Excalidraw Minimal UI
@namespace      github.com/openstyles/stylus
@version        1.0.0
@description    Hide/minimize UI on Excalidraw
@author         FallenMax
==/UserStyle== */
@-moz-document domain("excalidraw.com") {
	/** Smaller tool panel, also auto hide */
	.App-menu__left {
		position: fixed;
		bottom: -20px;
		margin: 0;
		.panelColumn {
			row-gap: 0;
		}
		left: -20px;
		
/* 		left: -200px;
		transition: left 0.15s ease !important;
		&:hover {
			left: -20px;
		} */
		
		/** Smaller icons */
		.encrypted-icon {
			display: none;
		}
		.buttonList {
			label,
			button {
				width: 24px !important;
				height: 24px !important;
				border-radius: 2px !important;
			}
			padding-left: 10px !important;
		}
		[title^="Show font picker"] {
			display: none !important;
		}
	}

	/** Hide footer */
	footer {
		display: none !important;
	}

	/** Hide top toolbar */
	.shapes-section {
		display: none !important;
	}
	.App-menu_top {
		grid-template-columns: 1fr 1fr !important;
	}
}

Reviews

No reviews yet.