cyb/src/containers/application/Header/CurrentApp/CurrentApp.module.scss

.containerBtnItemSelect {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 25px;
  align-items: center;
  height: 90px;
  border: none;
  background: transparent;
  color: rgb(31, 203, 255);
  margin-top: -10px;
  cursor: pointer;

  &:hover {
    .networkBtn {
      &::before {
        width: 95px;
        height: 95px;
      }
    }

    .networkBtnImg {
      width: 65px;
      height: 65px;
    }

    .containerBtnItemSelectText {
      transform: translateX(5px);
    }
  }
}

.networkBtn {
  border: none;
  background: transparent;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  &::before {
    content: '';
    width: 90px;
    height: 90px;
    background: #000000;
    box-shadow: 0px 0px 20px rgba(31, 203, 255, 0.4);
    position: absolute;
    border-radius: 50%;
    // z-index: -1;
    display: flex;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
    transition: 0.2s;
  }
}

.networkBtnImg {
  width: 60px;
  height: 60px;
  position: relative;
  object-fit: contain;
}

.btnContainerText {
  border: none;
  font-size: 16px;
  background: transparent;
  color: rgb(31, 203, 255);
  cursor: pointer;
}

.btnContainerTextHover {
  display: flex;
  justify-content: flex-end;
  font-size: 16px;
}

.containerInfoSwitch {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  height: 100%;
  gap: 10px;
  color: var(--blue-light);
}

.containerInfoSwitchGapUnSet {
  gap: unset;
}

.containerBandwidthBar {
  width: 100%;
}

.containerSwichNetworkList {
  display: flex;
  flex-direction: column;
  background: #0000008c;
  padding-left: 15px;
  width: 250px;
  padding-bottom: 15px;
  // opacity: 0;
  transition: 0.2s;
  backdrop-filter: blur(7px);

  &entering {
    opacity: 0;
  }

  &entered {
    opacity: 1;
  }

  &exiting {
    opacity: 0;
    transition: 0.1s;
  }

  &exited {
    opacity: 0;
    visibility: hidden;
    height: 1px;
  }
}

@media (max-width: 768px) {
  .networkBtn {
    &::before {
      width: 60px;
      height: 60px;
    }
  }

  .networkBtnImg {
    width: 40px;
    height: 40px;
  }

  .networkBtnImgIconMenu {
    div {
      width: 25px;
      height: 3px;
      margin: 4px 0;
    }
  }
}

.tooltipContainer {
  position: absolute;
  left: 0px;
  top: 130px;
  z-index: 3;
}

.networkBtnImg {
  width: 60px;
  height: 60px;
  position: relative;
  transition: 0.2s;
}

.portalGlow {
  filter: drop-shadow(0 0 6px #f62bfd) drop-shadow(0 0 12px #f62bfda0);
}

.buttonWrapper {
  display: grid;
  gap: 25px;
  grid-template-columns: 100px 1fr;
  align-items: center;
  height: 90px;

  @media (width < 768px) {
    grid-template-columns: 100px;
  }
}

.buttonWrapper {
  @media (max-width: 480px) {
    height: unset !important;
    grid-template-columns: unset !important;
  }

  @media (max-width: 768px) {
    position: relative;
    z-index: 4;
  }
}

.containerSubItems {
  display: flex;
  flex-direction: column;
  background: #0000008c;
  width: 170px;
  backdrop-filter: blur(7px);
}

Synonyms

pussy-landing/src/components/CurrentApp/CurrentApp.module.scss

Neighbours