Newer
Older
vmk-demo-bot / frontend / src / scss / components / _product-card.scss
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 659 bytes init
.kb-product-card {
	display: flex;
	width: 290px;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;

	.heading {
		display: flex;
		align-items: center;
		gap: 10px;
		align-self: stretch;

		color: $neutral-700;
		font-weight: 700;
		line-height: 30px;
	}

	.actions-group {
		width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

		.price {
			display: flex;
			flex-direction: column;
			gap: 0px;

			.old {
				color: $neutral-700;
				text-decoration-line: line-through;
			}

			.now {
				color: $neutral-800;
				font-size: $font-size-h4;
				font-weight: 700;
				line-height: 30px;
			}
		}
	}
}