.fixedIcons{
	position:fixed;
	right:0;
	top:0;
	height:100vh;
	width:6em;
	background-color:var(--basicColor1);
	border-left:2px solid whitesmoke;
	z-index: 600;
}
.fixedIcons svg{
	display:block;
	height:2.5em;
	width:auto;
	margin:3em 0;
}
.fixedIcons svg path{
	fill:var(--basicLinkColor);
}
.fixedIcons svg:hover path{
	fill:var(--basicColor2);
}
.bodyEditor .fixedIcons{
	right:20%;
}
@media screen and (max-width:1150px){
	.fixedIcons{
		width:5em;
	}
}
@media screen and (max-width:600px){
	.fixedIcons{
		display:none;
	}
}