Improve buffer header layout on mobile
Put buffer title above buffer description.
This commit is contained in:
parent
a419e660c0
commit
5b7ab2652b
2 changed files with 20 additions and 8 deletions
|
@ -160,8 +160,8 @@ export default function BufferHeader(props) {
|
|||
}
|
||||
|
||||
return html`
|
||||
<span class="title">${name}</span>
|
||||
<span class="description">${description}</span>
|
||||
<span class="actions">${actions}</span>
|
||||
<div class="title">${name}</div>
|
||||
${description ? html`<div class="description">${description}</div>` : null}
|
||||
<div class="actions">${actions}</div>
|
||||
`;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue