Newer
Older
vmk-demo-bot / frontend / src / scss / components / _event-card.scss
@eugene-sukhodolskiy eugene-sukhodolskiy 18 days ago 601 bytes init
.kb-event-card {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 8px;

	.kb-heading {
		color: $neutral-700;

		font-size: $font-size-body-xs;
		font-style: normal;
		font-weight: 700;
		line-height: 22px;
	}

	.tags {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		gap: 8px;

		.tag {
			display: flex;
			flex-direction: row;
			gap: 8px;
			align-items: center;

			.text {
				color: $neutral-700;
				font-size: $font-size-body-xs;
				font-style: normal;
				font-weight: 400;
				line-height: 22px;
			}
		}
	}

	.kb-btn.reg-to-event {
		width: 100%;
	}
}