Skip to content
Snippets Groups Projects
Forked from an inaccessible project.
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
favorites-container.component.scss 501 B
#favorite-container {
    padding: 20px 0 0px 0;
    margin-top: 0px;
    border-top: 1px solid rgba(0, 0, 0, 0.54);
}

.cdk-drop-list-dragging {
	position: relative;
	&:after {
		content: 'Add course to favorites';
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		background-color:white;
		border: dashed 2px #2879A8;
		color: #2879A8;
		font-weight: bold;
		text-transform: uppercase;
		border-radius: 5px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}