【发布时间】:2019-11-01 12:52:29
【问题描述】:
我有 changes 变量,它在 component.ts 文件中是布尔值。此变量也用于.html 文件。我正在尝试在 .scss 文件中访问此变量,如果为真,则基于布尔条件,应在网站上应用移动属性。如何在 scss 文件中访问此布尔变量并应用于 &.Mobile 并确保更改与可编辑模板一起正常工作?
这是我的 .html 文件
<div class="ab-table-filters">
这是我的 scss 文件
.bot {
border-radius: 2px;
text-align: left;
width: 100%;
@media (min-width: 700px) {
display: none;
}
}
.open {
ul {
position: relative;
top: auto;
}
}
}
}
.ab-table-filter {
border-radius: 2px;
@media (max-width: 700px) {
display: none;
}
&.disabled {
opacity: .4;
pointer-events: none;
&:hover {
cursor: no-drop;
}
}
}
【问题讨论】: