@import '../../../scss/index.scss';

// Типы табов
@import './type-content.scss';
@import './type-modal.scss';

// Табы
@mixin tabs () {
	@include flex-row-auto();

	// Фикс
	&,
	& * {
		@include fix();
	}

	&:not([type]),
	&[type="content"] {
		@include type-content();
	}

	&[type="modal"] {
		@include type-modal();
	}
}
