Skip to content

Commit de874a8

Browse files
committed
Fixed layout of visibility and status when not editable.
1 parent 2904842 commit de874a8

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

CHANGELOG

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@
33
sWe'll document all notable changes in this file, including bug fixes, enhancements, and dependency updates.
44
Dates should be in`YYYY-MM-DD` format and versions are in [semantic versioning](http://semver.org/) format.
55

6+
## v0.7.12 2025-02-18
7+
8+
### Fixed
9+
10+
- Fixed layout of visibility and status when not editable.
11+
612
## v0.7.11 2025-02-14
713

814
### Fixed

src/lib/Status.svelte

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
<style>
1414
.status {
15-
flex-grow: 1;
1615
text-transform: none;
1716
display: inline-block;
1817
font-size: var(--small-size);

src/lib/VisibilityChooser.svelte

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,5 +35,13 @@
3535
view={viz}
3636
></Options>
3737
{:else}
38-
{@render viz(level)}
38+
<div class="status">
39+
{@render viz(level)}
40+
</div>
3941
{/if}
42+
43+
<style>
44+
.status {
45+
display: inline-block;
46+
}
47+
</style>

0 commit comments

Comments
 (0)