Styles

Positions

In client/ui/positions.css it's possible to change some UI styles

.keyboard defines position of shortcuts keyboard opened with /shortcutskeyboard

.keyboard {
	bottom: 5%;
	left: 35%;
}

.nativeShortcutPreview defines position and width of shortcut preview when you use native shortcut

.nativeShortcutPreview {
	width: 614px;
	bottom: calc(5% + 120px);
	left: 35%;
}

.shortcutsOverview defines position and sizes of shortcuts overview opened by /shortcuts

.shortcutsOverview {
	width: 1200px;
	min-height: 600px;
	top: 10%;
	left: calc((100% - 1200px) / 2);
}

.shortcutsAdmin defines position and sizes of admin panel

.shortcutsAdmin {
	width: 1200px;
	min-height: 500px;
	top: 10%;
	left: calc((100% - 1200px) / 2);
}

.admin-players-list defines max-height of players list in admin panel home

.admin-players-list {
	max-height: 400px;
}

If you want to replace logo in admin, it's located in client/ui folder

Logo is called rcoreLogo.{hash}.svg, do not rename the file just replace it with your logo

Last updated