1
0
mirror of https://github.com/chinchang/web-maker.git synced 2025-06-07 10:06:08 +02:00

style: tweak count-label and use in console also

This commit is contained in:
Kushagra Gour 2019-03-13 23:38:20 +05:30
parent 9f15ba3fd4
commit 016ece473c
2 changed files with 5 additions and 3 deletions

View File

@ -55,7 +55,8 @@ export class Console extends PureComponent {
onDblClick={onConsoleHeaderDblClick} onDblClick={onConsoleHeaderDblClick}
> >
<span class="code-wrap__header-label"> <span class="code-wrap__header-label">
<Trans>Console</Trans> (<span>{logs.length}</span>) <Trans>Console</Trans>
<span class="count-label">{logs.length}</span>
</span> </span>
<div class="code-wrap__header-right-options"> <div class="code-wrap__header-right-options">
<a <a

View File

@ -1439,11 +1439,12 @@ body > #demo-frame {
} }
.count-label { .count-label {
color: rgba(0, 0, 0, 0.8); color: #333;
background: rgba(255, 255, 255, 0.53); background: rgba(255, 255, 255, 0.53);
border-radius: 5px; border-radius: 5px;
padding: 1px 6px; padding: 0px 6px;
font-weight: 600; font-weight: 600;
margin-left: 0.5rem;
} }
.onboard-step { .onboard-step {