EN · DE · RU · FR · ES

#2672: PhoneNumber.module.scss

projectforge-webapp/src/components/design/phoneNumber/PhoneNumber.module.scss Type: SCSS/CSS · Role: Component · Source: projectforge-webapp/src/components/design/phoneNumber/PhoneNumber.module.scss 40 lines · 33 code · 1 comments · 6 blank
Source code file at projectforge-webapp/src/components/design/phoneNumber/PhoneNumber.module.scss containing SCSS/CSS code for the Component layer.

Code Structure

CSS Rules (4): .number, .smsIcon, .zoom, .icon

SCSS Variables (1): $zoomedFontSize

Source Code (abridged)

$zoomedFontSize: 64px;

@keyframes numberZoom {
  from {
    font-size: 14px;
  }

  to {
    font-size: $zoomedFontSize;
  }
}


.number {
  .smsIcon {
    margin-left: .5em;
  }
}

// Separate selector for zoom overlay (rendered via Portal in document.body)
.zoom {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 125px;
  font-size: $zoomedFontSize;
  font-weight: bold;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: saturate(180%) blur(3px);
  z-index: 99999;
  animation: numberZoom .3s;

  .icon {
    margin-right: .5em;
  }
}

Git History

9d4ad5f7d Claude Code: Migrate addressList to AG-Grid-Table and prepare multi selection
cf9c13b6b increase phone number backdrop blur
7430f50eb add phone number icon
742613873 implement phone number zoom