This commit is contained in:
sunny 2018-09-17 16:16:11 +09:00
parent ecfc6320ff
commit 11d0f4c682
2 changed files with 16 additions and 1 deletions

View File

@ -19,7 +19,7 @@
</svg>
</button>
</div>
<div *ngIf="discoveryMode">
<div *ngIf="discoveryMode" class="ui-menu-mode">
<span>{{discoveryMode}} Mode</span>
</div>

View File

@ -1,3 +1,18 @@
#pages-content {
min-height: 100vh;
padding-bottom: 72px;
}
.ui-menu-mode {
display: flex;
flex-direction: row;
height: 100%;
padding: var(--spacing);
margin: 0;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
font-weight: var(--font-weight-semibold);
span {
margin: auto 0px;
}
}