Files
maintenance_system/src/views/ueScreen/gis.scss

11 lines
184 B
SCSS
Raw Normal View History

2025-11-14 16:34:39 +08:00
$vm_base: 1920;
$vh_base: 1080;
// 计算vw
@function vw($px) {
@return calc(($px / $vm_base) * 100vw);
}
// 计算vh
@function vh($px) {
@return calc(($px / $vh_base) * 100vh);
}