/** 
 *  ___  ___ __
 *  \  \/  /  / _
 *   \    /  /_| |_
 *   /    \____   _|  
 *  /__/\__\   |_|
 * 
 * @file btngroup.model.scss
 * @author Etienne Cochard 
 * 
 * @copyright (c) 2024 R-libre ingenierie
 *
 * Use of this source code is governed by an MIT-style license 
 * that can be found in the LICENSE file or at https://opensource.org/licenses/MIT.
 **/

 :root {
	--btngroup-background: white;
 }

.x4btngroup {
	align-content: start;
	margin: 5px;
	gap: 4px;

	background: var( --btngroup-background );

	&.align-right {
		justify-content: end;
	}

	&.align-center {
		justify-content: center;
	}

	.x4button:disabled {
		.fa-primary {
			fill: var( --border );
		}
	}
}