@use 'exports' as *;

.table {
	@layer mods {
		// 1 - Layout fixed
		&.mod-layoutFixed {
			@include layoutFixed;
		}

		// 2 - Layout fixed starting at breakpoint
		&[class*='mod-layoutFixedAtMediaMin'] {
			@include layoutFixedWithBreakpoint;
		}

		// Cells management for 1 & 2
		&[class*='mod-layoutFixed'] {
			@include layoutFixedCells;
		}
	}
}
