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.
saved-for-later-container.component.scss 535 B
#saved-for-later-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: 'Save course for later';
    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;
  }
}