pull/2981/head
Tuğçe Küçükoğlu 2022-09-02 13:22:24 +03:00
parent 3a36d4f6ab
commit ceecdf97d8
4 changed files with 29 additions and 12 deletions

View File

@ -59,7 +59,7 @@ html {
<CodeHighlight> <CodeHighlight>
&lt;style lang="scss" scoped&gt; &lt;style lang="scss" scoped&gt;
:deep(.dark-panel.p-panel) { :deep(.dark-panel.p-panel) {
.p-panel-titlebar { .p-panel-title {
background: #212121; background: #212121;
} }

View File

@ -1229,6 +1229,23 @@ export default {
this.nodeService.getTreeTableNodes().then(data => this.nodes = data); this.nodeService.getTreeTableNodes().then(data => this.nodes = data);
} }
} }
</CodeHighlight>
<CodeHighlight lang="css">
.sm-visible {
display: none;
}
@media screen and (max-width: 40em) {
:deep(.sm-invisible) {
display: none;
}
:deep(.sm-visible) {
display: inline;
margin-right: .5rem;
}
}
</CodeHighlight> </CodeHighlight>
<h5>Properties</h5> <h5>Properties</h5>

View File

@ -91,11 +91,11 @@ export default {
} }
@media screen and (max-width: 40em) { @media screen and (max-width: 40em) {
.sm-invisible { :deep(.sm-invisible) {
display: none; display: none;
} }
.sm-visible { :deep(.sm-visible) {
display: inline; display: inline;
margin-right: .5rem; margin-right: .5rem;
} }
@ -133,11 +133,11 @@ export default {
} }
@media screen and (max-width: 40em) { @media screen and (max-width: 40em) {
.sm-invisible { :deep(.sm-invisible) {
display: none; display: none;
} }
.sm-visible { :deep(.sm-visible) {
display: inline; display: inline;
margin-right: .5rem; margin-right: .5rem;
} }