HEX
Server: Microsoft-IIS/8.5
System: Windows NT YDAWBH120 6.3 build 9600 (Windows Server 2012 R2 Standard Edition) AMD64
User: tentjecom_web (0)
PHP: 7.4.14
Disabled: NONE
Upload Files
File: D:/HostingSpaces/SBogers10/shop.komma.nl/resources/sass/kms/Components/pagination.scss
/* KMS styling */

.c-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	list-style: none;
	margin: 0;
}

.c-pagination__item {
	display: flex;
	justify-content: center;
	align-items: center;
}

.c-pagination__link {
	font-size: 12px;
	padding: 8px;
	text-decoration: none;
	color: #9BA0AE;
	transition: color 0.2s, background-color 0.2s;

	&:hover {
		color: #3289FF;
	}

	&:focus {
		outline: none;
	}

	&.is-active,
	.c-pagination__item.is-active & {
		color: #565B66;
		font-weight: 600;
		cursor: default;
	}
}

.c-pagination__prev,
.c-pagination__next {
	font-size: 12px;
	display: flex;
	justify-content: center;
	padding: 8px;
	color: #9BA0AE;
	text-transform: uppercase;
	text-decoration: none;
	transition: color 0.2s;

	&:focus {
		outline: none;
	}

	&:hover {
		color: #3289FF;
	}

	.is-disabled > & {
		color: rgba(#9BA0AE, 0.25);
	}
}

.c-pagination__prev {
	margin-left: 0;
}