Commit 4e21a937 4e21a9374e5c5898a8ed394e501c15d89474c644 by 沈秋雨

style(dashboard): 优化工具栏右侧样式布局

1 parent d77eece8
...@@ -93,6 +93,14 @@ ...@@ -93,6 +93,14 @@
93 flex: 1; 93 flex: 1;
94 } 94 }
95 95
96 .toolbar-right {
97 margin-left: auto;
98 display: flex;
99 align-items: center;
100 gap: 6px;
101 white-space: nowrap;
102 }
103
96 .toolbar label { 104 .toolbar label {
97 color: var(--muted); 105 color: var(--muted);
98 font-size: 13px; 106 font-size: 13px;
...@@ -655,8 +663,10 @@ ...@@ -655,8 +663,10 @@
655 </select> 663 </select>
656 <button id="exportBtn">导出标注</button> 664 <button id="exportBtn">导出标注</button>
657 <button id="importReviewedBtn">入库审核通过</button> 665 <button id="importReviewedBtn">入库审核通过</button>
666 <div class="toolbar-right">
658 <span>审核人:</span><span id="reviewerDisplay"></span> 667 <span>审核人:</span><span id="reviewerDisplay"></span>
659 <button id="logoutBtn" class="secondary">登出</button> 668 <button id="logoutBtn" class="secondary">登出</button>
669 </div>
660 <button id="reloadBtn" class="secondary">刷新</button> 670 <button id="reloadBtn" class="secondary">刷新</button>
661 </div> 671 </div>
662 </header> 672 </header>
......