[fix](trx-frontend-http): fix misaligned text in recorder Download/Remove buttons
Normalize button styling between <a> and <button> elements by using inline-flex with centered alignment instead of inline-block. Add align-items to the container and box-sizing to the buttons. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Stan Grams <sjg@haxx.space>
This commit is contained in:
@@ -1246,14 +1246,19 @@ small { color: var(--text-muted); }
|
||||
}
|
||||
.recorder-table .rec-file-actions {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.4rem;
|
||||
}
|
||||
.recorder-table .rec-file-btn {
|
||||
display: inline-block;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
box-sizing: border-box;
|
||||
padding: 0.2rem 0.5rem;
|
||||
font-size: 0.75rem;
|
||||
font-family: inherit;
|
||||
line-height: 1.4;
|
||||
text-align: center;
|
||||
text-decoration: none;
|
||||
border: 1px solid var(--border-light);
|
||||
border-radius: 4px;
|
||||
|
||||
Reference in New Issue
Block a user