@import "../sass/variables.scss";

$bgColor: #ffffff;

.kit-segment-button-edit {
	position: relative;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	width: 24px;
	height: 24px;
	margin-left: 2px;
	padding: 4px;
	background-color: $bgColor;
	border: 0;
	border-radius: 4px;
	outline: none;
	box-sizing: border-box;

	color: $copyColor;
	transition: background-color 0.15s ease-in-out;
	cursor: pointer;

	&:hover {
		background-color: darken($copyColorBg, 10%);
	}
}
