Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3564 | Autoría | Ultima modificación | Ver Log |

.applicationSidebar {
  width: 100%;
  margin-bottom: 1rem;

  button {
    width: 100%;
  }
}

.widget {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: $bg-color;
  padding: 0.5rem;
  border-radius: $border-radius;

  &__app {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 100%;
    text-align: center;

    &__img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
    }

    &__title {
      color: $font-color;
      font-size: 0.9rem;
    }
  }
}

@include maxwidth("medium") {
  .widget {
    flex-direction: column;

    &__app:not(:first-child) {
      margin-top: 0.5rem;
    }
  }
}