File "collapse.scss"

Full Path: /home/warrior1/public_html/wp-content/plugins/elementor/app/modules/kit-library/assets/js/components/collapse.scss
File size: 527 bytes
MIME-type: text/plain
Charset: utf-8

.eps-collapse {
	&__title {
		cursor: pointer;
		padding: spacing(5) 0;
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		background: transparent;
		border: none;
		color: inherit;

		&:focus {
			outline: none;
		}
	}

	&__icon {
		transition: all 150ms;
		transform: rotate(getValueByDirection( 0deg, 180deg ));
	}

	&__content {
		margin-top: spacing(10);
		display: none;
	}

	&[data-open] &__content {
		display: block;
	}

	&[data-open] &__icon {
		transform: rotate(90deg);
	}
}