PhoneNumber.module.scssprojectforge-webapp/src/components/design/phoneNumber/PhoneNumber.module.scss containing SCSS/CSS code for the Component layer.CSS Rules (4): .number, .smsIcon, .zoom, .icon
SCSS Variables (1): $zoomedFontSize
$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;
}
}
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