style: improve browse icons

This commit is contained in:
Tomáš Mládek 2023-04-20 21:15:03 +02:00
parent 370c775b9c
commit bb0a2ced3d

View file

@ -52,14 +52,14 @@
active={editable} active={editable}
/> />
<IconButton <IconButton
name="fullscreen" name={detail ? "zoom-out" : "zoom-in"}
on:click={() => { on:click={() => {
detail = !detail; detail = !detail;
detailChanged = true; detailChanged = true;
}} }}
active={detail} active={detail}
/> />
<IconButton name="bookmark" on:click={() => visit()} disabled={only} /> <IconButton name="link" on:click={() => visit()} disabled={only} />
<IconButton <IconButton
name="x-circle" name="x-circle"
on:click={() => dispatch("close")} on:click={() => dispatch("close")}
@ -85,7 +85,7 @@
.column.detail { .column.detail {
width: 100%; width: 100%;
.view { .view {
min-width: 75vw; min-width: 75vw;
max-width: 1920px; max-width: 1920px;